From 4cdc75915f1643c3cdaadccdfcaf12d62e01e7ab Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Wed, 5 Jan 2022 17:53:08 -0800 Subject: 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. --- misc/scripts/file_format.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'misc/scripts') diff --git a/misc/scripts/file_format.sh b/misc/scripts/file_format.sh index b241f3da70..e66bc88bc0 100755 --- a/misc/scripts/file_format.sh +++ b/misc/scripts/file_format.sh @@ -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 -- cgit v1.2.3