From fc876eb05f964b9a393e2165c6ab431454e8584c Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Thu, 20 Aug 2020 11:25:31 +0100 Subject: [PATCH] Update artifact-from-s3.sh --- scripts/ci/utils/artifact-from-s3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/utils/artifact-from-s3.sh b/scripts/ci/utils/artifact-from-s3.sh index 348aebe448..9b3f664d93 100755 --- a/scripts/ci/utils/artifact-from-s3.sh +++ b/scripts/ci/utils/artifact-from-s3.sh @@ -25,7 +25,7 @@ fi test ! -d $OUTPUT && mkdir -p $OUTPUT aws s3 cp $ARTIFACT ./s3-artifact.tmp echo 'artifact download done' -tar -xf ./s3-artifact.tmp -C $OUTPUT >&/dev/null +tar -xvf ./s3-artifact.tmp -C $OUTPUT >&/dev/null echo 'tar the artifact done' rm ./s3-artifact.tmp echo 'remove tmp file'