Skip to content

Commit

Permalink
ci: server: fix the git ls-files
Browse files Browse the repository at this point in the history
  • Loading branch information
phymbert committed Mar 31, 2024
1 parent 281c50c commit 09f24c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
git config --global --add safe.directory $(realpath .)
cd examples/server
./deps.sh
not_ignored_files="$(git ls-files --others)"
not_ignored_files="$(git ls-files --others --modified)"
if [ -n "${not_ignored_files}" ]; then
echo "Repository is dirty or server deps are not built as expected"
echo "${not_ignored_files}"
Expand Down

0 comments on commit 09f24c2

Please sign in to comment.