summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-05-12 15:24:36 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-05-12 15:24:36 +0200
commitaad61cd0d4aa2e87100dc1f964923d15fe98eb14 (patch)
tree4260876d7a5721aa4dc0ca1a4af745c6d05811a7
parent1a5850137368d7d3961e9120034f143433c49b84 (diff)
Fix: Helptext is for downloading
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
-rw-r--r--src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 6afb3a1..2a1ccb6 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -734,14 +734,14 @@ pub fn cli<'a>() -> App<'a> {
.multiple(false)
.index(1)
.value_name("PKG")
- .about("Verify the sources of this package (optional, if left out, all packages are checked)")
+ .about("Download the sources of this package (optional, if left out, all packages are downloaded)")
)
.arg(Arg::new("package_version")
.required(false)
.multiple(false)
.index(2)
.value_name("VERSION_CONSTRAINT")
- .about("Verify the sources of this package version (optional, if left out, all packages are checked)")
+ .about("Download the sources of this package version (optional, if left out, all packages are downloaded)")
)
.arg(Arg::new("force")
.required(false)