blob: 02dcbee837cd7528367d4ca1e700522a0654c649 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env bash
set -e
cd fonts
url='https://fonts.google.com/download?family=Lato|Caveat|Noto%20Color%20Emoji|Noto%20Colr%20Emoji%20Glyf'
tmp=$(mktemp)
curl "$url" > "$tmp"
unzip -uo "$tmp"
rm "$tmp"
|