summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-05-12 15:24:36 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-05-17 15:17:21 +0200
commit9b0cf8e75fb7f83f8fe6d4ea07ceb4bd0932d865 (patch)
treed8c63f8868785a35f706b456099ae4ba89bad45e
parent3ca72a47678f9d57c40630d99382e0014317d95c (diff)
Fix: Helptext is for downloading
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net> (cherry picked from commit aad61cd0d4aa2e87100dc1f964923d15fe98eb14)
-rw-r--r--src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 2e2ff3a..c13e93f 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -675,14 +675,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)