Skip to content

Commit

Permalink
Print the output in dev null and add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriziovitale committed Jul 3, 2020
1 parent cd2b489 commit b8418e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/ci/utils/artifact-from-s3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit b8418e6

Please sign in to comment.