Browse Source

Merge pull request #56542 from aaronfranke/format-no-bat

Skip formatting `.bat` files in `file_format.sh`
Rémi Verschelde 3 years ago
parent
commit
98693e96ae
1 changed files with 2 additions and 0 deletions
  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
         continue
     elif [[ "$f" == *"sln" ]]; then
     elif [[ "$f" == *"sln" ]]; then
         continue
         continue
+    elif [[ "$f" == *".bat" ]]; then
+        continue
     elif [[ "$f" == *".out" ]]; then
     elif [[ "$f" == *".out" ]]; then
         # GDScript integration testing files.
         # GDScript integration testing files.
         continue
         continue