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'