Skip to content
Snippets Groups Projects
Commit 346cb2ee authored by Cam Saül's avatar Cam Saül
Browse files

handle custom versions with spaces

parent 71e48948
Branches
Tags
No related merge requests found
......@@ -7,8 +7,8 @@ version() {
VERSION=$(./version)
read -e -p "What version string we use for this uberjar? [$VERSION] " VERSION_RESPONSE
if [ $VERSION_RESPONSE ]; then
VERSION=$VERSION_RESPONSE
if [ "$VERSION_RESPONSE" ]; then
VERSION="$VERSION_RESPONSE"
fi
echo "Tagging uberjar with version '$VERSION'."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment