diff options
Diffstat (limited to 'checkapk.in')
-rw-r--r-- | checkapk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkapk.in b/checkapk.in index 334bbb9..4f9b27a 100644 --- a/checkapk.in +++ b/checkapk.in @@ -73,7 +73,7 @@ for i in $pkgname $subpackages; do fi apk fetch --quiet --repositories-file $tmpdir/repositories --stdout $_pkgname \ - | tar -zt | grep -v '^\.SIGN\.' | sort > filelist-$_pkgname-old \ + | tar -ztf - | grep -v '^\.SIGN\.' | sort > filelist-$_pkgname-old \ || die "failed to download old pkg, maybe run 'apk update'?" tar -ztf "$filepath" | grep -v '^\.SIGN\.' | sort > "filelist-$_pkgname" |