mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
Add an exception for thirdparty subdirectories in file_format.sh
This exception is also present in clang_format.sh and is needed in some cases. (cherry picked from commit 10eaf0c52bcec565df46a90ceeebe59d52c8cbff)
This commit is contained in:
parent
6484327489
commit
699d2caa1d
@ -28,7 +28,9 @@ while IFS= read -rd '' f; do
|
||||
continue
|
||||
elif [[ "$f" == *"po" ]]; then
|
||||
continue
|
||||
elif [[ "$f" == "thirdparty"* ]]; then
|
||||
elif [[ "$f" == "thirdparty/"* ]]; then
|
||||
continue
|
||||
elif [[ "$f" == *"/thirdparty/"* ]]; then
|
||||
continue
|
||||
elif [[ "$f" == "platform/android/java/lib/src/com/google"* ]]; then
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user