Merge pull request #68587 from Riteo/file-check-exception

Add an exception for thirdparty subdirectories in file_format.sh
This commit is contained in:
Rémi Verschelde 2022-11-15 16:24:13 +01:00
commit ac99a448b6
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -31,7 +31,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