1
0
Fork 0
mirror of synced 2024-05-21 21:13:28 +12:00
FiraCode/script/package.sh

13 lines
224 B
Bash
Raw Permalink Normal View History

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