summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 2299165..445f50c 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -278,14 +278,17 @@ pub fn cli<'a>() -> App<'a> {
.help("Do not use the fancy format, but simply <name> <version>")
)
)
- .subcommand(App::new("verify-sources")
- .about("Hash-check all source files")
- .arg(Arg::with_name("package_name")
- .required(false)
- .multiple(false)
- .index(1)
- .value_name("PKG")
- .help("Verify the sources of this package (optional, if left out, all packages are checked)")
+ .subcommand(App::new("source")
+ .about("Handle package sources")
+ .subcommand(App::new("verify")
+ .about("Hash-check all source files")
+ .arg(Arg::with_name("package_name")
+ .required(false)
+ .multiple(false)
+ .index(1)
+ .value_name("PKG")
+ .help("Verify the sources of this package (optional, if left out, all packages are checked)")
+ )
)
)