summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xopkg-cert4
1 files changed, 2 insertions, 2 deletions
diff --git a/opkg-cert b/opkg-cert
index 6ed3304..82238aa 100755
--- a/opkg-cert
+++ b/opkg-cert
@@ -287,8 +287,8 @@ verify()
printf '%d\n' $(time) 1>"${ROOT}/var/cache/opkg/last-cert-check"
fi
- if { gunzip -c -- "${msg}" || cat "${msg}"; } 2>/dev/null | \
- "${USIGN:-usign}" -V -q -m - \
+ if { "${GUNZIP:-gunzip}" -c -- "${msg}" || cat "${msg}"; } \
+ 2>/dev/null | "${USIGN:-usign}" -V -q -m - \
-P "${ROOT}/etc/opkg/keys/" -x "${sig}"; then
return 0
else