From a0d68660dfec3b4b67c7b1b022710df27852bcbe Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 22 May 2021 22:43:26 +0100 Subject: [PATCH] otter: Show upload progress bar by default Signed-off-by: Ian Jackson --- src/bin/otter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/otter.rs b/src/bin/otter.rs index e92c37bf..67f57aa1 100644 --- a/src/bin/otter.rs +++ b/src/bin/otter.rs @@ -116,7 +116,7 @@ impl MainOpts { #[throws(AE)] fn progressbar(&self) -> Box { - if self.verbose > 0 { + if self.verbose >= 0 { termprogress::new() } else { termprogress::Null::new() -- 2.30.2