summaryrefslogtreecommitdiffstats
path: root/abuild.in
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2016-07-06 12:23:22 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2016-07-06 12:24:59 +0200
commit670fc1ae14eb4517cb971806a9608b22ef28ab39 (patch)
tree4af283dc7326a6cf78d3e103a91dd010351aa396 /abuild.in
parentfd02387cc1c7efacd5d48d18a9d1d6b7c715c7ef (diff)
downloadabuild-670fc1ae14eb4517cb971806a9608b22ef28ab39.tar.bz2
abuild-670fc1ae14eb4517cb971806a9608b22ef28ab39.tar.xz
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.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/abuild.in b/abuild.in
index 883c661..72f8978 100644
--- a/abuild.in
+++ b/abuild.in
@@ -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
}