Skip to content

Commit

Permalink
fix(ci): syntax error when rustfmt fails
Browse files Browse the repository at this point in the history
  • Loading branch information
fetchfern committed Apr 23, 2024
1 parent 2b3f337 commit 9d69f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
git config --global user.name "GitHub Actions"
git config --global user.email "team@pyro.host"
if [ `git status --porcelain` ]; then git commit -am "refactor: rustfmt [skip ci]" && git push; fi
if [ "`git status --porcelain`" ]; then git commit -am "refactor: rustfmt [skip ci]" && git push; fi
- name: Set up cache
uses: actions/cache/restore@v4
Expand Down

0 comments on commit 9d69f58

Please sign in to comment.