diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-07-20 11:52:22 +0200 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-07-22 09:14:52 +0000 |
commit | f2e8908bedb973eb97969914b92868c8d1417deb (patch) | |
tree | 3596efd4c5e8f7becc685302fc0934745a3b9c14 /utils | |
parent | 20528922cf8ac0de72f1ed73b8f679fc67728204 (diff) |
Redirect stdout to /dev/null when pushing results to artifacts
Change-Id: Iafa37838337caf8c196b396f2e94c405629a0e2c
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/push-test-logs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |