From f2e8908bedb973eb97969914b92868c8d1417deb Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Wed, 20 Jul 2016 11:52:22 +0200 Subject: [PATCH] Redirect stdout to /dev/null when pushing results to artifacts Change-Id: Iafa37838337caf8c196b396f2e94c405629a0e2c Signed-off-by: jose.lausuch --- utils/push-test-logs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.16.6