Skip to content
Snippets Groups Projects
Commit 53b17143 authored by Natanael Copa's avatar Natanael Copa
Browse files

abuild: use APKINDEX.tar.gz rather than APK_INDEX.gz

parent c2a0126e
No related branches found
No related tags found
No related merge requests found
......@@ -465,6 +465,7 @@ apkcache() {
if ! apk_up2date || [ -n "$force" ]; then
sanitycheck && builddeps && clean && fetch && unpack && rootpkg || return 1
fi
local apk
mkdir -p "$apkcache" || return 1
cd "$apkcache"
......@@ -610,7 +611,7 @@ cache_up2date() {
local i apk
for i in $pkgname $subpackages; do
apk="${i%:*}-$pkgver-r$pkgrel.apk"
[ "$apkcache"/APK_INDEX.gz -nt "$apkcache"/$apk ] || return 1
[ "$apkcache"/APKINDEX.tar.gz -nt "$apkcache"/$apk ] || return 1
done
return 0
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment