From 11d9c0a673a952b2add35a1241c347a56f449c4b Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 1 Dec 2015 20:13:41 -0500 Subject: [PATCH] properties can not be empty by default? Change-Id: Iabec6f4a67d200cc9e2800a1f3fc7c4d2ad6eb6a Signed-off-by: Dan Radez --- jjb/apex/apex.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jjb/apex/apex.yml b/jjb/apex/apex.yml index b00674bfd..ced678ff9 100644 --- a/jjb/apex/apex.yml +++ b/jjb/apex/apex.yml @@ -267,7 +267,7 @@ parameters: - string: name: ARTIFACT_NAME - default: '' + default: 'latest' description: "RPM Artifact name that will be appended to GS_URL to deploy a specific artifact" - string: name: BUILD_DIRECTORY @@ -388,7 +388,7 @@ echo "--------------------------------------------------------" echo - if [[ -z "$ARTIFACT_NAME" ]]; then + if [[ ! "$ARTIFACT_NAME" == "latest" ]]; then # if artifact name is passed the pull a # specific artifact from artifacts.opnfv.org RPM_INSTALL_PATH=$GS_URL/$ARTIFACT_NAME -- 2.16.6