summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-09 12:16:00 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-12-09 14:52:09 +0100
commitfc688d99c7a2fc47633a91ad828925141ef80f6a (patch)
treeece8b665a7af16630988162c3ca57d73097995a8 /src/cli.rs
parent909472de22b366afa74afc1aa0c6d4d326d19d55 (diff)
Fix: Missing CLI definition
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 4684588..ed8ad8e 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -572,6 +572,12 @@ pub fn cli<'a>() -> App<'a> {
.value_name("VERSION")
.about("Verify the sources of this package version (optional, if left out, all packages are checked)")
)
+ .arg(Arg::new("force")
+ .required(false)
+ .multiple(false)
+ .long("force")
+ .about("Overwrite existing cache entry")
+ )
)
)