We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed089b commit 8e76c7eCopy full SHA for 8e76c7e
src/cargo/util/progress.rs
@@ -40,6 +40,9 @@ struct Format {
40
max_print: usize,
41
}
42
43
+/// Which escape code to use for progress reporting.
44
+///
45
+/// There is more codes, but we only use these two.
46
enum ProgressCode {
47
None,
48
Normal(u8),
@@ -101,7 +104,7 @@ impl<'cfg> Progress<'cfg> {
101
104
throttle: Throttle::new(),
102
105
last_line: None,
103
106
fixed_width: progress_config.width,
- last_pbar: 255,
107
+ last_pbar: u8::MAX,
108
}),
109
110
0 commit comments