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.

(cherry picked from commit 4cdc759)
  • Loading branch information
aaronfranke authored and akien-mga committed Jan 6, 2022
1 parent 6f81a8e commit c58391c
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" == *"patch" ]]; then
continue
elif [[ "$f" == *"pot" ]]; then
Expand Down

0 comments on commit c58391c

Please sign in to comment.