summaryrefslogtreecommitdiffstats
path: root/src/commands/build.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-06-18 08:41:19 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-06-18 08:41:19 +0200
commitf20bf09292739e1bdbba9c1f8235a35f7d2d7712 (patch)
treecf50746d185f3e19a1f6a8b40354ff326aa174e6 /src/commands/build.rs
parent2ebb3a00aca2eaaea5f182b1f72e21c09fcba6ee (diff)
Make progress bar for loading DAG optional
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
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 8825750..ff2769d 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
};