Переглянути джерело

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.
Aaron Franke 3 роки тому
батько
коміт
4cdc75915f
1 змінених файлів з 2 додано та 0 видалено
  1. 2 0
      misc/scripts/file_format.sh

+ 2 - 0
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