From 4aab9807357d6e522f2a979af82ea8fafbce027f Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 11 Nov 2020 12:25:04 +0100 Subject: Move to have "source" subcommand Signed-off-by: Matthias Beyer --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.rs') 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)), -- cgit v1.2.3