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