FiraCode/script/package.sh

13 wiersze
224 B
Bash
Czysty Zwykły widok Historia

2021-11-05 22:34:36 +00:00
#!/bin/bash
set -o errexit -o nounset -o pipefail
2020-05-17 21:34:17 +00:00
cd "`dirname $0`/.."
VERSION="$(git describe --tags)"
2020-05-17 21:34:17 +00:00
FILE="Fira_Code_v$VERSION.zip"
rm -f $FILE
pushd distr
find . -not -name ".*" | xargs zip ../$FILE
popd
ls -lah $FILE