Skip to content

Commit

Permalink
Skip formatting .bat files in file_format.sh
Browse files Browse the repository at this point in the history
These are supposed to have CRLF because Windows, so we'll just skip this file type in the script.
  • Loading branch information
aaronfranke committed Jan 6, 2022
1 parent 3662105 commit 4cdc759
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions misc/scripts/file_format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ while IFS= read -rd '' f; do
continue
elif [[ "$f" == *"sln" ]]; then
continue
elif [[ "$f" == *".bat" ]]; then
continue
elif [[ "$f" == *".out" ]]; then
# GDScript integration testing files.
continue
Expand Down

0 comments on commit 4cdc759

Please sign in to comment.