From e530993392dc2ac54e566a45df6c974aa68aaa23 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 11 Feb 2012 16:56:02 +1000 Subject: testpkg: set gpgdir Without setting gpgdir, testpkg outputs: warning: Public keyring not found; have you run 'pacman-key --init'? Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- src/util/testpkg.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/util/testpkg.c') diff --git a/src/util/testpkg.c b/src/util/testpkg.c index 6385e417..96400a75 100644 --- a/src/util/testpkg.c +++ b/src/util/testpkg.c @@ -59,6 +59,9 @@ int main(int argc, char *argv[]) /* let us get log messages from libalpm */ alpm_option_set_logcb(handle, output_cb); + /* set gpgdir to default */ + alpm_option_set_gpgdir(handle, GPGDIR); + if(alpm_pkg_load(handle, argv[1], 1, level, &pkg) == -1 || pkg == NULL) { err = alpm_errno(handle); -- cgit v1.2.3-24-g4f1b