From: Michael Tremer Date: Sun, 15 Oct 2023 13:17:35 +0000 (+0000) Subject: cli: pakfire-builder: Add forgotten repo options X-Git-Tag: 0.9.30~1505 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fc5c73fe7ed9f014aa0b5cd51c3d56be12fba4ed;p=pakfire.git cli: pakfire-builder: Add forgotten repo options Signed-off-by: Michael Tremer --- diff --git a/src/cli/pakfire-builder.c b/src/cli/pakfire-builder.c index 7e1a4e253..70a92cedd 100644 --- a/src/cli/pakfire-builder.c +++ b/src/cli/pakfire-builder.c @@ -57,9 +57,11 @@ enum { }; static struct argp_option options[] = { - { "arch", OPT_ARCH, "ARCH", 0, "Choose an architecture", 0 }, - { "debug", OPT_DEBUG, NULL, 0, "Run in debug mode", 0 }, - { "distro", OPT_DISTRO, "DISTRO", 0, "Build for this distribution", 0 }, + { "arch", OPT_ARCH, "ARCH", 0, "Choose an architecture", 0 }, + { "debug", OPT_DEBUG, NULL, 0, "Run in debug mode", 0 }, + { "distro", OPT_DISTRO, "DISTRO", 0, "Build for this distribution", 0 }, + { "enable-repo", OPT_ENABLE_REPO, "REPO", 0, "Enable a repository", 0 }, + { "disable-repo", OPT_DISABLE_REPO, "REPO", 0, "Disable a repository", 0 }, { NULL }, };