From ae10c2a9b40d99b45c686b69defb3363a382ccfc Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 29 Jul 2018 16:42:42 -0400 Subject: [PATCH] add notes to the create release package script --- create-package.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 ""