summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--checkapk.in5
1 files changed, 0 insertions, 5 deletions
diff --git a/checkapk.in b/checkapk.in
index 4f9b27a..f8a8d1b 100644
--- a/checkapk.in
+++ b/checkapk.in
@@ -67,11 +67,6 @@ for i in $pkgname $subpackages; do
# generate a temp repositories file with only the http(s) repos
grep -E "^https?:" /etc/apk/repositories > $tmpdir/repositories
- oldpkg=$(apk fetch --repositories-file $tmpdir/repositories --simulate 2>&1 | sed 's/^Downloading //')
- if [ "${oldpkg}" = "${pkg}" ]; then
- die "the built package ($_pkgname) is already in the repo"
- fi
-
apk fetch --quiet --repositories-file $tmpdir/repositories --stdout $_pkgname \
| tar -ztf - | grep -v '^\.SIGN\.' | sort > filelist-$_pkgname-old \
|| die "failed to download old pkg, maybe run 'apk update'?"