Skip to content

Commit 734cb5b

Browse files
Tweak what the non-interactive progress bar looks like
1 parent 2dd4acd commit 734cb5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/output.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ impl ProgressReporter for NonInteractiveProgressReporter {
573573
}
574574

575575
fn report_progress(&mut self, _current: usize, _total: usize, _item_name: &str) {
576-
print!("#");
576+
print!(".");
577577
io::stdout().flush().unwrap();
578578
}
579579

@@ -586,7 +586,7 @@ impl ProgressReporter for NonInteractiveProgressReporter {
586586
}
587587

588588
fn report_failure(&mut self, _item_name: &str, _error: &str) {
589-
print!("X");
589+
print!("x");
590590
io::stdout().flush().unwrap();
591591
}
592592

0 commit comments

Comments
 (0)