mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03: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.
(cherry picked from commit 4cdc75915f)
This commit is contained in:
committed by
Rémi Verschelde
parent
6f81a8ee2c
commit
c58391c9d1
@@ -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" == *"patch" ]]; then
|
elif [[ "$f" == *"patch" ]]; then
|
||||||
continue
|
continue
|
||||||
elif [[ "$f" == *"pot" ]]; then
|
elif [[ "$f" == *"pot" ]]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user