Merge pull request #68587 from Riteo/file-check-exception
Add an exception for thirdparty subdirectories in file_format.sh
This commit is contained in:
commit
ac99a448b6
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue