Skip to content

Commit

Permalink
possible fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDuPont committed Mar 28, 2024
1 parent c2ca9bf commit fa3098c
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 @@ -31,7 +31,7 @@ jobs:
run: |
set +x
formatted_files=$(find ./config ./src ./tools -newer /tmp/pre_fmt)
num_formatted_files=$(echo "$formatted_files" | wc -l)
num_formatted_files=$(echo -n "$formatted_files" | grep -c '^')
if [ "$num_formatted_files" -gt "0" ]; then
echo "❌🔥 Bad code detected! The following files would be reformatted:"
Expand Down

0 comments on commit fa3098c

Please sign in to comment.