1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-08-16 08:20:37 +03:00
FiraCode/script/package

12 lines
199 B
Plaintext
Raw Normal View History

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