diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2017-07-03 21:12:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-03 21:12:12 +0000 |
commit | c25fa35e198bb190312a1cf84569c3ebdd78b0a8 (patch) | |
tree | 315165bbba3ed16004add4aafb2e55b12a2928db | |
parent | 4afe031d31e37e85985cc8911875ac4db772730c (diff) | |
parent | e2306a1f7591452a05fdf5b332d5bc152fed51bb (diff) |
Merge "barometer: Fix upload URL"
-rw-r--r-- | jjb/barometer/barometer-upload-artifact.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/barometer/barometer-upload-artifact.sh b/jjb/barometer/barometer-upload-artifact.sh index 887c4924e..817cc5770 100644 --- a/jjb/barometer/barometer-upload-artifact.sh +++ b/jjb/barometer/barometer-upload-artifact.sh @@ -17,12 +17,12 @@ echo "Uploading the barometer RPMs to artifacts.opnfv.org" echo "---------------------------------------------------" echo -gsutil -m cp -r $RPM_DIR/* $OPNFV_ARTIFACT_URL > $WORKSPACE/gsutil.log 2>&1 +gsutil -m cp -r $RPM_DIR/* gs://$OPNFV_ARTIFACT_URL > $WORKSPACE/gsutil.log 2>&1 # Check if the RPMs were pushed -gsutil ls $OPNFV_ARTIFACT_URL > /dev/null 2>&1 +gsutil ls gs://$OPNFV_ARTIFACT_URL > /dev/null 2>&1 if [[ $? -ne 0 ]]; then - echo "Problem while uploading barometer RPMs to $OPNFV_ARTIFACT_URL!" + echo "Problem while uploading barometer RPMs to gs://$OPNFV_ARTIFACT_URL!" echo "Check log $WORKSPACE/gsutil.log on the appropriate build server" exit 1 fi |