Skip to content

Commit c58391c

Browse files
aaronfrankeakien-mga
authored andcommitted
Skip formatting .bat files in file_format.sh
These are supposed to have CRLF because Windows, so we'll just skip this file type in the script. (cherry picked from commit 4cdc759)
1 parent 6f81a8e commit c58391c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

misc/scripts/file_format.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ while IFS= read -rd '' f; do
2020
continue
2121
elif [[ "$f" == *"sln" ]]; then
2222
continue
23+
elif [[ "$f" == *".bat" ]]; then
24+
continue
2325
elif [[ "$f" == *"patch" ]]; then
2426
continue
2527
elif [[ "$f" == *"pot" ]]; then

0 commit comments

Comments
 (0)