osmo-release.sh: Add quotes to string to fix shellcheck warning

Change-Id: I40376c99d44552d9b8023fca8d319a9312b0fbb0
This commit is contained in:
Pau Espin 2018-08-30 12:42:37 +02:00
parent 896ff6db16
commit 941fd9be1b
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ REL=$2
if [ "z$REL" = "z" ]; then
echo "No REL value specified, defaulting to 'patch' release"
REL=patch
REL="patch"
fi
BUMPVER=`command -v bumpversion`