1
0
Fork 0
mirror of synced 2024-05-17 11:03:33 +12:00
FiraCode/script/package

12 lines
199 B
Plaintext
Raw Normal View History

2020-05-18 09:34:17 +12:00
#!/bin/zsh -euo pipefail
cd "`dirname $0`/.."
VERSION="$(git describe --tags)"
2020-05-18 09:34:17 +12:00
FILE="Fira_Code_v$VERSION.zip"
rm -f $FILE
pushd distr
find . -not -name ".*" | xargs zip ../$FILE
popd
ls -lah $FILE