diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-22 01:36:38 +0100 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-22 01:36:38 +0100 |
commit | f5366718fd0847cbaa6bcd1bede2886d9fdb3468 (patch) | |
tree | 0fabefa169867d5df043eb22b10479f7b6ab25ab /jjb | |
parent | 0f1eb9629fede911a50f46653c1dea99cbf30a21 (diff) |
Suppress gsutil output while setting artifact meta
Change-Id: I1a96af938b48a337346010d8bb5cd5fa7aa0552c
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/fuel/fuel-upload-artifact.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/fuel/fuel-upload-artifact.sh b/jjb/fuel/fuel-upload-artifact.sh index d72cefb33..5d3fed60b 100755 --- a/jjb/fuel/fuel-upload-artifact.sh +++ b/jjb/fuel/fuel-upload-artifact.sh @@ -26,11 +26,11 @@ fi gsutil -m setmeta \ -h "Content-Type:text/html" \ -h "Cache-Control:private, max-age=0, no-transform" \ - gs://$GS_URL/*.properties + gs://$GS_URL/*.properties > /dev/null 2>&1 gsutil -m setmeta \ -h "Cache-Control:private, max-age=0, no-transform" \ - gs://$GS_URL/*.iso + gs://$GS_URL/*.iso > /dev/null 2>&1 echo echo "--------------------------------------------------------" |