mirror of https://github.com/godotengine/godot
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:
parent
3662105f8b
commit
4cdc75915f
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue