1
0
Fork 0
mirror of synced 2024-05-01 11:13:27 +12:00
FiraCode/script/package.sh
2021-11-05 23:34:36 +01:00

13 lines
224 B
Bash
Executable file

#!/bin/bash
set -o errexit -o nounset -o pipefail
cd "`dirname $0`/.."
VERSION="$(git describe --tags)"
FILE="Fira_Code_v$VERSION.zip"
rm -f $FILE
pushd distr
find . -not -name ".*" | xargs zip ../$FILE
popd
ls -lah $FILE