summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-07-27 16:36:37 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-07-27 16:36:37 +0200
commit45cda0f70ab0f1d717c3dc2b481ad84a4ff0f00f (patch)
tree838317e911d46039ba928a476135177227710227 /src/main.rs
parent69d2334a5121edbbaa7356428e2d6e8fbd5d3443 (diff)
parentb140c12b53931bf463f706d28ddb3be0c0fb0e4f (diff)
Merge branch 'optional-dag-loading-progress'
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 4c5ce5d..38460a6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -235,7 +235,7 @@ async fn main() -> Result<()> {
Some(("tree-of", matches)) => {
let repo = load_repo()?;
- crate::commands::tree_of(matches, repo, progressbars)
+ crate::commands::tree_of(matches, repo)
.await
.context("tree-of command failed")?
}