Skip to content

Commit

Permalink
Fix bootstrap check for dev tag
Browse files Browse the repository at this point in the history
  • Loading branch information
sjones4 committed Oct 11, 2019
1 parent a6e5a42 commit 3b8d68f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ while [ $# -gt 0 ]; do
if [ "${1}" = "--tag" ]; then
shift; if [ -z "${1}" ]; then usage; fi
GIT_TAG="${1}";
if [${GIT_TAG} != "dev" ]; then TAG_PARAM_SPECIFIED="Y"; fi
if [ "${GIT_TAG}" != "dev" ]; then TAG_PARAM_SPECIFIED="Y"; fi
shift; continue
fi
if [ "${1}" = "-t" ]; then
Expand Down

0 comments on commit 3b8d68f

Please sign in to comment.