Skip to content

Commit

Permalink
fix: Remove [] operator from if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydee864 committed Aug 29, 2023
1 parent 9e43082 commit 29002db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Check for diff
id: diff
run: |
if [ git status -s dist/ | grep "dist/" ]; then
if git status -s dist/ | grep "dist/"); then
echo "SHOULD_PUSH_BUILD=true" >> "$GITHUB_OUTPUT"
else
echo "SHOULD_PUSH_BUILD=false" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 29002db

Please sign in to comment.