From: jose.lausuch Date: Wed, 20 Jul 2016 09:52:22 +0000 (+0200) Subject: Redirect stdout to /dev/null when pushing results to artifacts X-Git-Tag: colorado.1.0~230 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F11%2F17211%2F5;p=releng.git Redirect stdout to /dev/null when pushing results to artifacts Change-Id: Iafa37838337caf8c196b396f2e94c405629a0e2c Signed-off-by: jose.lausuch --- diff --git a/utils/push-test-logs.sh b/utils/push-test-logs.sh index b385fa88a..d36561d2d 100644 --- a/utils/push-test-logs.sh +++ b/utils/push-test-logs.sh @@ -54,7 +54,7 @@ if [ -d "$dir_result" ]; then echo "Not possible to push results to artifact: gsutil not installed."; else echo "copy result files to artifact $project_artifact" - gsutil -m cp -r "$dir_result" gs://artifacts.opnfv.org/"$project_artifact"/ + gsutil -m cp -r "$dir_result" gs://artifacts.opnfv.org/"$project_artifact"/ >/dev/null 2>&1 fi fi else