Skip to content

Commit

Permalink
internal: pass ci (cargo test)
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Flash committed Jun 26, 2024
1 parent 564547c commit e1b0e92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ fn build(
) -> anyhow::Result<Option<usize>> {
let (mut dumb_console, mut fancy_console);
let progress: &mut dyn Progress = if terminal::use_fancy() {
fancy_console = FancyConsoleProgress::new(verbose, true, None);
fancy_console = FancyConsoleProgress::new(verbose, false, None);
&mut fancy_console
} else {
dumb_console = DumbConsoleProgress::new(verbose, true, None);
dumb_console = DumbConsoleProgress::new(verbose, false, None);
&mut dumb_console
};

Expand Down

0 comments on commit e1b0e92

Please sign in to comment.