diff options
author | Dan Radez <dradez@redhat.com> | 2015-12-01 20:13:41 -0500 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2015-12-01 20:13:41 -0500 |
commit | 11d9c0a673a952b2add35a1241c347a56f449c4b (patch) | |
tree | c3efa61b5a7000788e811ed37be4ae5f888940d9 /jjb/apex/apex.yml | |
parent | b7cb48c0b2b7e8984f02a9c0cd0fd1c7ad56122b (diff) |
properties can not be empty by default?
Change-Id: Iabec6f4a67d200cc9e2800a1f3fc7c4d2ad6eb6a
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'jjb/apex/apex.yml')
-rw-r--r-- | jjb/apex/apex.yml | 4 |
1 files 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 |