Redirect stdout to /dev/null when pushing results to artifacts 11/17211/5
authorjose.lausuch <jose.lausuch@ericsson.com>
Wed, 20 Jul 2016 09:52:22 +0000 (11:52 +0200)
committerJose Lausuch <jose.lausuch@ericsson.com>
Fri, 22 Jul 2016 09:14:52 +0000 (09:14 +0000)
Change-Id: Iafa37838337caf8c196b396f2e94c405629a0e2c
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
utils/push-test-logs.sh

index b385fa8..d36561d 100644 (file)
@@ -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