summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
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)),