Update artifact-from-s3.sh

This commit is contained in:
Eugenio Romano
2020-08-20 11:25:31 +01:00
committed by GitHub
parent 062c5e85e7
commit fc876eb05f

View File

@@ -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'