From f5366718fd0847cbaa6bcd1bede2886d9fdb3468 Mon Sep 17 00:00:00 2001 From: Fatih Degirmenci Date: Tue, 22 Dec 2015 01:36:38 +0100 Subject: [PATCH] Suppress gsutil output while setting artifact meta Change-Id: I1a96af938b48a337346010d8bb5cd5fa7aa0552c Signed-off-by: Fatih Degirmenci --- jjb/fuel/fuel-upload-artifact.sh | 4 ++-- 1 file 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 "--------------------------------------------------------" -- 2.16.6