summaryrefslogtreecommitdiff
path: root/src/util/testpkg.c
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2012-02-11 16:56:02 +1000
committerDan McGee <dan@archlinux.org>2012-02-13 10:05:18 -0600
commite530993392dc2ac54e566a45df6c974aa68aaa23 (patch)
tree85f5e0a6eea395a15722903dc1060bbf182ab9a4 /src/util/testpkg.c
parent7a3f59cd66a4f70641b863ebaaf52674b921bf3c (diff)
testpkg: set gpgdir
Without setting gpgdir, testpkg outputs: warning: Public keyring not found; have you run 'pacman-key --init'? Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/util/testpkg.c')
-rw-r--r--src/util/testpkg.c3
1 files changed, 3 insertions, 0 deletions
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);