summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--checkapk.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/checkapk.in b/checkapk.in
index da2fde3..01773c9 100644
--- a/checkapk.in
+++ b/checkapk.in
@@ -15,7 +15,7 @@ if ! [ -f "$datadir/functions.sh" ]; then
fi
. "$datadir/functions.sh"
-: ${APK:="apk"}
+: ${APK_FETCH:="apk"}
usage() {
cat >&2 <<-__EOF__
@@ -68,12 +68,12 @@ 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 //')
+ oldpkg=$($APK_FETCH 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 \
+ $APK_FETCH 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'?"