From b8418e6e071d116e050e8cdcdb8d923bbdf5a061 Mon Sep 17 00:00:00 2001 From: maurizio vitale Date: Fri, 3 Jul 2020 14:43:16 +0100 Subject: [PATCH] Print the output in dev null and add logs --- scripts/ci/utils/artifact-from-s3.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/ci/utils/artifact-from-s3.sh b/scripts/ci/utils/artifact-from-s3.sh index e73bec656a..c7c2f6a534 100755 --- a/scripts/ci/utils/artifact-from-s3.sh +++ b/scripts/ci/utils/artifact-from-s3.sh @@ -24,5 +24,8 @@ fi test ! -d $OUTPUT && mkdir -p $OUTPUT aws s3 cp $ARTIFACT ./s3-artifact.tmp -tar -xvf ./s3-artifact.tmp -C $OUTPUT +echo 'artifact download done' +tar -xvf ./s3-artifact.tmp -C $OUTPUT >&/dev/null +echo 'tar the artifact done' rm ./s3-artifact.tmp +echo 'remove tmp file' \ No newline at end of file