summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")
+ )
)
)