1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03: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