Skip to content

Commit

Permalink
add notes to the create release package script
Browse files Browse the repository at this point in the history
  • Loading branch information
WuphonsReach committed Jul 29, 2018
1 parent 18f5b75 commit ae10c2a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion create-package.sh
Original file line number Diff line number Diff line change
@@ -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 ""
Expand Down

0 comments on commit ae10c2a

Please sign in to comment.