Skip placeholder file check (#763)

This commit is contained in:
nobody 2021-11-13 07:21:30 +01:00
parent 08d5fa6fa6
commit 7d57ae8abe
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
1 changed files with 7 additions and 1 deletions

View File

@ -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