]> pd.if.org Git - zpackage/blobdiff - zpm-test
add options to control config file listing
[zpackage] / zpm-test
index da8ca6fb135ee67679a088c786d4da1ac08d857e..9f6c8767e0b1c6460804cd403a8c5a412bd6b9f5 100755 (executable)
--- a/zpm-test
+++ b/zpm-test
@@ -13,7 +13,14 @@ done
 shift $((OPTIND - 1))
 
 for pkgfile in "$@"; do
-appid=$(sqlite3 $pkgfile 'pragma application_id;' | ( echo obase = 16; cat - ) | bc)
+       if [ ! -f "$pkgfile" ]; then
+               if [ "$verbose" -eq 1 ]; then
+                       echo $pkgfile does not appear to be a zpm package file 1>&2
+               fi
+               exit 1
+       fi
+
+appid=$(zpm shell $pkgfile 'pragma application_id;' | ( echo obase = 16; cat - ) | bc)
 if [ "$appid" != "5A504442" ]; then
        if [ "$verbose" -eq 1 ]; then
                echo $pkgfile does not appear to be a zpm package file 1>&2