mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-22 23:12:45 +00:00
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.
This commit is contained in:
parent
9cb1ad3cff
commit
9f23ed5409
@ -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'?"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user