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

Skip formatting `.bat` files in `file_format.sh`
This commit is contained in:
Rémi Verschelde 2022-01-06 08:22:08 +01:00 committed by GitHub
commit 98693e96ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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