mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Fix compatibility with busybox's grep.
This commit is contained in:
parent
23c0dc50bf
commit
a2e2c74a38
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
base='https://fonts\.(gstatic\.com|kavin\.rocks)'
|
||||
fonts=$(cat dist/assets/* | grep -Po "$base[^)]*" | sort | uniq)
|
||||
fonts=$(cat dist/assets/* | grep -Eo "${base}[^)]*" | sort | uniq)
|
||||
|
||||
for font in $fonts; do
|
||||
file="dist/fonts$(echo "$font" | sed -E "s#$base##")"
|
||||
mkdir -p "$(dirname "$file")"
|
||||
|
|
Loading…
Reference in a new issue