mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
10 lines
309 B
Bash
Executable file
10 lines
309 B
Bash
Executable file
#!/bin/sh
|
|
|
|
base='https://fonts\.(gstatic\.com|kavin\.rocks)'
|
|
fonts=$(cat dist/assets/* | grep -Po "$base[^)]*" | sort | uniq)
|
|
for font in $fonts; do
|
|
file="dist/fonts$(echo "$font" | sed -E "s#$base##")"
|
|
mkdir -p "$(dirname "$file")"
|
|
curl -L "$font" -o "$file"
|
|
done
|
|
sed -Ei "s#$base#/fonts#g" dist/assets/*
|