1
0
mirror of https://github.com/godotengine/godot synced 2024-07-05 17:18:46 +00:00

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.
This commit is contained in:
Aaron Franke 2022-01-05 17:53:08 -08:00
parent 3662105f8b
commit 4cdc75915f
No known key found for this signature in database
GPG Key ID: 40A1750B977E56BF

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