Make unzip less verbose in macOS

Change-Id: I83249f724ecbfeeb4fd5c1cd33a9c6195c590c4b
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
This commit is contained in:
Tony Sarajärvi
2018-03-19 15:36:22 +02:00
parent 9ae91ae3f8
commit ab021d4bb4

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