Skip to content

Commit

Permalink
correct check for expected value when nothing to commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmathis committed Sep 19, 2024
1 parent a5c9661 commit 7c46d98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
shell: bash -l {0}
run: |
set -e
if [[ "${{ steps.enums.outputs.count }}" != "0" || "${{ steps.enums.outputs.files }}" != "0" ]]; then
if [[ "${{ steps.enums.outputs.count }}" != "" || "${{ steps.enums.outputs.files }}" != "0" ]]; then
git config user.name github-actions
git config user.email [email protected]
git add emmet-core/emmet/core/*/calc_types/enums.py
Expand Down

0 comments on commit 7c46d98

Please sign in to comment.