From e66f29ff85392e3c06e9033e37ead06a9d9d5daa Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Thu, 18 Jun 2020 21:48:33 +0200 Subject: Add blog --- install_prepare.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'install_prepare.sh') diff --git a/install_prepare.sh b/install_prepare.sh index 2b39985..ced8f40 100755 --- a/install_prepare.sh +++ b/install_prepare.sh @@ -7,3 +7,10 @@ test -f "$abbrgen_execname" || \ test -f modules/unicode/UnicodeData.txt || \ curl -Ls 'https://www.unicode.org/Public/13.0.0/ucd/UnicodeData.txt' >modules/unicode/UnicodeData.txt + +mkdir -p static/fonts +test -f static/fonts/mononoki-Regular.woff || { + wget 'https://github.com/madmalik/mononoki/releases/download/1.2/mononoki.zip' -O /tmp/mononoki.zip + trap "rm /tmp/mononoki.zip" EXIT + unzip /tmp/mononoki.zip -d static/fonts/ +} -- cgit v1.2.3-54-g00ecf