diff options
author | Teddy Wing | 2021-06-12 16:30:57 +0200 |
---|---|---|
committer | Teddy Wing | 2021-06-12 16:30:57 +0200 |
commit | f49b81b6d37709df8bf37a2361315dd3cab90fd7 (patch) | |
tree | 0b9d430eed3f383ce966fa7d09a0e031178a1976 /src/main.rs | |
parent | 90086d8bb49733c9599d1e07fd553653021e3299 (diff) | |
download | reflectub-f49b81b6d37709df8bf37a2361315dd3cab90fd7.tar.bz2 |
main: try! error from `process_repo`
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 79ea0fa..cd799ce 100644 --- a/src/main.rs +++ b/src/main.rs @@ -147,7 +147,7 @@ async fn run() -> anyhow::Result<()> { &mirror_root, base_cgitrc, max_repo_size_bytes, - ); + )?; // }); // joins.push(join); |