Make unzip less verbose in macOS

Change-Id: I83249f724ecbfeeb4fd5c1cd33a9c6195c590c4b
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
(cherry picked from commit ab021d4bb4)
Reviewed-by: Simo Fält <simo.falt@qt.io>
This commit is contained in:
Tony Sarajärvi
2018-03-19 15:36:22 +02:00
committed by Liang Qi
parent 4ff6dd218a
commit 9bcf5656a1

View File

@@ -76,7 +76,7 @@ function InstallAppFromCompressedFileFromURL {
tar -xzf "$targetFile" --directory "$targetDirectory"
;;
"zip")
unzip "$targetFile" -d "$targetDirectory"
unzip -q "$targetFile" -d "$targetDirectory"
;;
*)
exit 1