summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2013-06-05 13:26:59 +0200
committerJerome Pasion <jerome.pasion@digia.com>2013-06-05 14:13:30 +0200
commit58554abac0b7f0abf86287f54263551f30a6103e (patch)
tree9d27d4a7b9ad8cee901753b88202f04a26801a01
parent8e6a616fe980b15d3b6a19ea43e03fa3ca06c1cb (diff)
docrelease: Fixed bug related to version argument.
Change-Id: Ib81b4d42c88ae6680eb4b89de931ab46814ef82a Reviewed-by: Geir Vattekar <geir.vattekar@digia.com>
-rwxr-xr-xbin/docrelease2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/docrelease b/bin/docrelease
index 2869625..d601898 100755
--- a/bin/docrelease
+++ b/bin/docrelease
@@ -13,7 +13,7 @@ while getopts ":u:v:h" opt; do
;;
v)
echo "DOCRELEASE: Version is $OPTARG"
- if [ -n "$OPTARG"]; then
+ if [ -n "$OPTARG" ]; then
VERS=$OPTARG
fi
;;