Skip to content

Commit

Permalink
Fix missing -z
Browse files Browse the repository at this point in the history
  • Loading branch information
RustyTake-Off committed Sep 6, 2024
1 parent 059345e commit c83f29a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/move_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ git config --global user.email "$USER_EMAIL"

git add --all

if [ "$(git diff --staged --quiet)" ]; then
if [ -z "$(git diff --staged)" ]; then
echo ''
echo '=== No changes to commit ============'
echo ''
Expand Down

0 comments on commit c83f29a

Please sign in to comment.