diff options
author | Tim Rozet <trozet@redhat.com> | 2015-12-02 18:34:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-12-02 18:34:49 +0000 |
commit | 74810a83844602e82d4e5d70ac866b53fbdf5d3d (patch) | |
tree | 7566b18ccf2ecc01aeafacedfea13cb973d864ba /jjb/apex | |
parent | 05daeeb4f90eb5a8ab0a928bc7c9d6414b5c1905 (diff) | |
parent | 11d9c0a673a952b2add35a1241c347a56f449c4b (diff) |
Merge "properties can not be empty by default?"
Diffstat (limited to 'jjb/apex')
-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 |