summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFatih Degirmenci <fatih.degirmenci@ericsson.com>2016-01-04 15:36:40 +0100
committerFatih Degirmenci <fatih.degirmenci@ericsson.com>2016-01-04 15:36:40 +0100
commitebf6ae51abdaa29eb8eaf9bc41a4187bac6ec0ff (patch)
tree528ed0288d52dee14e07d04586c903811dcfb765
parent9d3e806aae5b9609220517dfc440a3078243062a (diff)
Fix URL to Google Storage for OVSNFV
Change-Id: I249faf006a38806e757af2cb450eeafd6653eaf9 Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
-rwxr-xr-xci/upload_artifacts.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/ci/upload_artifacts.sh b/ci/upload_artifacts.sh
index 848d672..e396497 100755
--- a/ci/upload_artifacts.sh
+++ b/ci/upload_artifacts.sh
@@ -12,13 +12,13 @@ export RPMFILE_D=openvswitch-debuginfo-$VERSION-1.x86_64.rpm
export RPMFILE=openvswitch-$VERSION-1.x86_64.rpm
# upload artifact and additional files to google storage
-echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D $GS_URL/opnfv-$DATE-$RPMFILE_D
-gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D $GS_URL/opnfv-$DATE-$RPMFILE_D
+echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D gs://$GS_URL/opnfv-$DATE-$RPMFILE_D
+gsutil cp $TMP_RELEASE_DIR/$RPMFILE_D gs://$GS_URL/opnfv-$DATE-$RPMFILE_D
-echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE $GS_URL/opnfv-$DATE-$RPMFILE
-gsutil cp $TMP_RELEASE_DIR/$RPMFILE $GS_URL/opnfv-$DATE-$RPMFILE
+echo gsutil cp $TMP_RELEASE_DIR/$RPMFILE gs://$GS_URL/opnfv-$DATE-$RPMFILE
+gsutil cp $TMP_RELEASE_DIR/$RPMFILE gs://$GS_URL/opnfv-$DATE-$RPMFILE
echo
echo "------------------------------------------------------"
echo "Done!"
-echo "Artifacts are available as $GS_URL/opnfv-$DATE-$RPMFILE"
+echo "Artifacts are available as http://$GS_URL/opnfv-$DATE-$RPMFILE"