mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2025-02-09 00:18:42 +01:00
Skip placeholder file check (#763)
This commit is contained in:
parent
08d5fa6fa6
commit
7d57ae8abe
@ -738,7 +738,13 @@ third_party=()
|
|||||||
# Find files in /resource/
|
# Find files in /resource/
|
||||||
while IFS= read -r -d $'\0'; do
|
while IFS= read -r -d $'\0'; do
|
||||||
array+=("$REPLY")
|
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
|
for i in "${array[@]}"; do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user