diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-07-06 12:23:22 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-07-06 12:24:59 +0200 |
commit | 670fc1ae14eb4517cb971806a9608b22ef28ab39 (patch) | |
tree | 4af283dc7326a6cf78d3e103a91dd010351aa396 /abuild.in | |
parent | fd02387cc1c7efacd5d48d18a9d1d6b7c715c7ef (diff) | |
download | abuild-670fc1ae14eb4517cb971806a9608b22ef28ab39.tar.gz abuild-670fc1ae14eb4517cb971806a9608b22ef28ab39.tar.bz2 abuild-670fc1ae14eb4517cb971806a9608b22ef28ab39.tar.xz abuild-670fc1ae14eb4517cb971806a9608b22ef28ab39.zip |
abuild: perform unzip operations quietly
unzip(1) is verbose by default since we don't run tar(1) in verbose mode
we should run unzip with -q for consistency.
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -410,7 +410,7 @@ default_unpack() { unxz -c "$s" | tar -C "$srcdir" -x || return 1;; *.zip) msg "Unpacking $s..." - unzip "$s" -d "$srcdir" || return 1;; + unzip -q "$s" -d "$srcdir" || return 1;; esac done } |