From b140c12b53931bf463f706d28ddb3be0c0fb0e4f Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 18 Jun 2021 08:42:46 +0200 Subject: 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 Tested-by: Matthias Beyer --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') 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")? } -- cgit v1.2.3