summaryrefslogtreecommitdiffstats
path: root/src/commands/build.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/commands/build.rs
parent69d2334a5121edbbaa7356428e2d6e8fbd5d3443 (diff)
parentb140c12b53931bf463f706d28ddb3be0c0fb0e4f (diff)
Merge branch 'optional-dag-loading-progress'
Diffstat (limited to 'src/commands/build.rs')
-rw-r--r--src/commands/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/build.rs b/src/commands/build.rs
index bb0c2d9..db8d7a4 100644
--- a/src/commands/build.rs
+++ b/src/commands/build.rs
@@ -226,7 +226,7 @@ pub async fn build(
let dag = {
let bar_tree_building = progressbars.bar();
- let dag = Dag::for_root_package(package.clone(), &repo, &bar_tree_building)?;
+ let dag = Dag::for_root_package(package.clone(), &repo, Some(&bar_tree_building))?;
bar_tree_building.finish_with_message("Finished loading Dag");
dag
};