Skip to content

Commit

Permalink
fix bash error in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Avi Deitcher <[email protected]>
  • Loading branch information
deitch authored and eriknordmark committed Jul 27, 2023
1 parent 123abaf commit e7c8285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
# we run it twice, so that it will report on the logs
echo "changed and uncommitted files"
git status --short
if [ $(git status --short) != '' ]; then
if [ -n "$(git status --short)" ]; then
# print the diff so we can fix it, if there is an issue
git diff
exit 1
Expand Down

0 comments on commit e7c8285

Please sign in to comment.