From: Michael Tremer Date: Thu, 28 Sep 2023 14:57:10 +0000 (+0000) Subject: cli: pakfire-builder: Add info command X-Git-Tag: 0.9.30~1612 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecdd76bdf77ff003d0d1b1c08999e50c136cb372;p=pakfire.git cli: pakfire-builder: Add info command Signed-off-by: Michael Tremer --- diff --git a/src/cli/pakfire-builder.c b/src/cli/pakfire-builder.c index e1ea09886..e48ab4ba0 100644 --- a/src/cli/pakfire-builder.c +++ b/src/cli/pakfire-builder.c @@ -30,6 +30,7 @@ #include "lib/clean.h" #include "lib/command.h" +#include "lib/info.h" #include "lib/provides.h" #include "lib/repolist.h" #include "lib/requires.h" @@ -54,6 +55,7 @@ struct config { static int cli_main(struct pakfire* pakfire, int argc, char* argv[]) { static const struct command commands[] = { { "clean", 0, cli_clean }, + { "info", 0, cli_info }, { "provides", 0, cli_provides }, { "repolist", 0, cli_repolist }, { "requires", 0, cli_requires },