summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 9eadec5..cef9b43 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -98,6 +98,11 @@ async fn main() -> Result<()> {
("find-pkg", Some(matches)) => {
let repo = load_repo()?;
crate::commands::find_pkg(matches, &config, repo).await?
+ },
+
+ ("verify-sources", Some(matches)) => {
+ let repo = load_repo()?;
+ crate::commands::verify_sources(matches, &config, repo).await?
}
(other, _) => return Err(anyhow!("Unknown subcommand: {}", other)),