summaryrefslogtreecommitdiffstats
path: root/checkapk.in
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2014-01-23 07:25:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2014-01-23 07:25:54 +0000
commit9f23ed5409e6903ae5b89af83ec1cbb678035ae4 (patch)
treefc165ebb267b3934168e69efd2db1df66ecfcb10 /checkapk.in
parent9cb1ad3cffdb2664205645e2dad0600d6eaa2e1f (diff)
downloadabuild-9f23ed5409e6903ae5b89af83ec1cbb678035ae4.tar.bz2
abuild-9f23ed5409e6903ae5b89af83ec1cbb678035ae4.tar.xz
checkapk: run apk fetch in quiet mode to workaround bug in apk fetch
apk fetch --stdout will mix the progress bar with data output. We work around this by run it in quiet mode.
Diffstat (limited to 'checkapk.in')
-rw-r--r--checkapk.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkapk.in b/checkapk.in
index 079e53b..6887961 100644
--- a/checkapk.in
+++ b/checkapk.in
@@ -71,7 +71,7 @@ for i in $pkgname $subpackages; do
die "the built package ($_pkgname) is already in the repo"
fi
- apk fetch --repositories-file $tmpdir/repositories --stdout $_pkgname \
+ apk fetch --quiet --repositories-file $tmpdir/repositories --stdout $_pkgname \
| tar -zt | grep -v '^\.SIGN\.' | sort > filelist-$_pkgname-old \
|| die "failed to download old pkg, maybe run 'apk update'?"