From b26c5e5e3b492f2e6b088711788f461818aaf959 Mon Sep 17 00:00:00 2001
From: Simon Piette <simon.piette@savoirfairelinux.com>
Date: Thu, 25 Sep 2014 18:29:39 -0400
Subject: [PATCH] build-system: fix tag conditional

Refs #55550

Change-Id: Ie5beacded9dd37b83401958202ec24c7511fb444
---
 tools/build-system/launch-build-machine-jenkins.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/build-system/launch-build-machine-jenkins.sh b/tools/build-system/launch-build-machine-jenkins.sh
index 771f222c6e..04634715a3 100755
--- a/tools/build-system/launch-build-machine-jenkins.sh
+++ b/tools/build-system/launch-build-machine-jenkins.sh
@@ -116,7 +116,7 @@ echo "Update reference sources"
 git checkout . && git checkout -f master && git pull
 
 # Get the version
-if [ -n $TAG ]; then
+if [ -n "$TAG" ]; then
     CURRENT_RELEASE_TAG_NAME="$TAG"
 else
     CURRENT_RELEASE_TAG_NAME=`git describe --tags --abbrev=0`
-- 
GitLab