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

13 lines
224 B
Bash
Raw Normal View History

2021-11-06 01:34:36 +03:00
#!/bin/bash
set -o errexit -o nounset -o pipefail
2020-05-18 00:34:17 +03:00
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