summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/cli.rs b/src/cli.rs
index a6b7843..6c0e668 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -406,7 +406,7 @@ pub fn cli<'a>() -> App<'a> {
.multiple(false)
.long("all")
.short('A')
- .about("Same as: -SDpEFPs --deny-images (all flags enabled)")
+ .about("Same as: -SDpEFPs --deny-images --allowed-images (all flags enabled)")
)
.arg(Arg::new("show_sources")
@@ -467,6 +467,13 @@ pub fn cli<'a>() -> App<'a> {
.about("Show the flags of the package")
)
+ .arg(Arg::new("show_allowed_images")
+ .required(false)
+ .multiple(false)
+ .long("allowed-images")
+ .about("Show the images on which the package is only allowed to be built")
+ )
+
.arg(Arg::new("show_deny_images")
.required(false)
.multiple(false)