Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDuPont committed Mar 28, 2024
1 parent 908189b commit c2ca9bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
run: |
set +x
formatted_files=$(find ./config ./src ./tools -newer /tmp/pre_fmt)
num_formatted_files=$(find ./config ./src ./tools -newer /tmp/pre_fmt | wc -l)
echo $num_formatted_files
num_formatted_files=$(echo "$formatted_files" | wc -l)
if [ "$num_formatted_files" -gt "0" ]; then
echo "❌🔥 Bad code detected! The following files would be reformatted:"
echo "$formatted_files"
Expand Down

0 comments on commit c2ca9bf

Please sign in to comment.