diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2017-07-03 17:17:14 +0200 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2017-07-03 17:17:14 +0200 |
commit | e2306a1f7591452a05fdf5b332d5bc152fed51bb (patch) | |
tree | 4c1e86e32fa345afaf1e9a072025362cb29798c0 /jjb/barometer | |
parent | 8fc6a11577e041be9e8a446bc8700e9655e33552 (diff) |
barometer: Fix upload URL
Change-Id: Id8c5572adb2691882519b0136346a393dd4115f9
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb/barometer')
-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 |