1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00

quiet unzip (fixes #130)

This commit is contained in:
Alif Rachmawadi 2022-01-24 04:37:15 +00:00
parent 31089a7435
commit d5878a0492
No known key found for this signature in database
GPG key ID: DD1F490C879BFA91

View file

@ -53,7 +53,7 @@ download_archive() {
curl --connect-timeout 15 --retry 5 $archive_url >$archive_local
if [[ $archive_name == *zip ]]; then
unzip -o "$archive_local" -d "$HOME"
unzip -q -o "$archive_local" -d "$HOME"
shopt -s dotglob
mv ${HOME}/flutter/* "$2"
shopt -u dotglob