From 7d57ae8abeae9a2547a24ea909547e8547f98245 Mon Sep 17 00:00:00 2001 From: nobody Date: Sat, 13 Nov 2021 07:21:30 +0100 Subject: [PATCH] Skip placeholder file check (#763) --- audit/audit.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/audit/audit.sh b/audit/audit.sh index a4b72ec5..89bbc4a4 100755 --- a/audit/audit.sh +++ b/audit/audit.sh @@ -738,7 +738,13 @@ third_party=() # Find files in /resource/ while IFS= read -r -d $'\0'; do array+=("$REPLY") -done < <(find ../resources/ -type f \( -iname "*.jsm" -or -iname "*.css" -or -iname "*.woff" -or -iname "*.woff2" \) ! -iname "fa-loader.css" ! -iname "google-material-design-icons.css" -print0) +done < <(find ../resources/ \ + -type f \ + \( -iname "*.jsm" -or -iname "*.css" -or -iname "*.woff" -or -iname "*.woff2" \) \ + ! -iname "fa-loader.css" \ + ! -iname "google-material-design-icons.css" \ + ! -iname "google-fonts-placeholder.css" \ + -print0) for i in "${array[@]}"; do