summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-11-11 12:25:04 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-11-11 17:05:26 +0100
commit4aab9807357d6e522f2a979af82ea8fafbce027f (patch)
treebd65b454e8c3d3f8d123a6ae09285e3bd45f665f /src/main.rs
parent7af96e33717573c1acbbcd4146b65ef73ce33cc9 (diff)
Move to have "source" subcommand
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index cef9b43..0940356 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -100,9 +100,9 @@ async fn main() -> Result<()> {
crate::commands::find_pkg(matches, &config, repo).await?
},
- ("verify-sources", Some(matches)) => {
+ ("source", Some(matches)) => {
let repo = load_repo()?;
- crate::commands::verify_sources(matches, &config, repo).await?
+ crate::commands::source(matches, &config, repo).await?
}
(other, _) => return Err(anyhow!("Unknown subcommand: {}", other)),