summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-06-18 08:42:46 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-06-18 08:42:47 +0200
commitb140c12b53931bf463f706d28ddb3be0c0fb0e4f (patch)
tree6965d6b3ea77b553fdd645426e17b4c6f3dad06b /src/main.rs
parentf20bf09292739e1bdbba9c1f8235a35f7d2d7712 (diff)
Remove progressbar for tree-of subcommand
Remove the progress bar here because it does not bring any real value and rather clutters the output and thus makes it harder to read. Signed-off-by: Matthias Beyer <matthias.beyer@atos.net> Tested-by: Matthias Beyer <matthias.beyer@atos.net>
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 59dd559..5ae443b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -234,7 +234,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")?
}