Skip to content

Commit c810b55

Browse files
committed
fix(cli/rustup_mode): use ASCII-compatible spinner
1 parent 429b73e commit c810b55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/rustup_mode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ async fn check_updates(cfg: &Cfg<'_>, opts: CheckOpts) -> Result<utils::ExitCode
815815
pb.set_style(
816816
ProgressStyle::with_template("{msg:.bold} - Checking... {spinner:.green}")
817817
.unwrap()
818-
.tick_chars("⠁⠂⠄⡀⢀⠠⠐⠈ "),
818+
.tick_chars(r"|/-\ "),
819819
);
820820
pb.set_message(format!("{name}"));
821821
pb.enable_steady_tick(Duration::from_millis(100));

0 commit comments

Comments
 (0)