diff --git a/create-package.sh b/create-package.sh index 18de4b1..df50f12 100755 --- a/create-package.sh +++ b/create-package.sh @@ -1,12 +1,17 @@ #!/bin/bash +# Notes: +# - Prior to running this, the repo needs to be tagged +# - Change the VERSION line to look for the git tag +# - It can be run over and over to produce the release ZIP + # exit immediately on errors set -e # error out if uninitialized variable is used set -u BASENAME=StockAntennaBalance -VERSION=$(git tag -l 'v1.3.1.0' | tail -1) +VERSION=$(git tag -l 'v1.4.4.0' | tail -1) ARCHIVENAME=${BASENAME}-${VERSION}.zip echo ""