14 lines
320 B
Bash
Executable file
14 lines
320 B
Bash
Executable file
#!/bin/bash -eux
|
|
set -o pipefail
|
|
|
|
git clone --single-branch --depth=1 https://github.com/be5invis/Iosevka
|
|
cp private-build-plans.toml ./Iosevka
|
|
|
|
cd /Iosevka
|
|
npm i
|
|
npm run build -- contents::iosevka-acicchetti
|
|
|
|
cd dist/iosevka-acicchetti/ttf/
|
|
tar cvf iosevka-acicchetti-$(date -I).tzst --zstd *.ttf
|
|
|
|
wormhole send *.tzst
|