We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbbd83f commit 67717d3Copy full SHA for 67717d3
src/rustup-cli/common.rs
@@ -44,6 +44,7 @@ pub fn confirm_advanced() -> Result<Confirm> {
44
println!("1) Proceed with installation (default)");
45
println!("2) Customize installation");
46
println!("3) Cancel installation");
47
+ print!(">");
48
49
let _ = std::io::stdout().flush();
50
let input = read_line()?;
tests/cli-inst-interactive.rs
@@ -85,7 +85,7 @@ fn blank_lines_around_stderr_log_output_install() {
85
assert!(out.stdout.contains(
86
r"
87
3) Cancel installation
88
-
+>
89
90
stable installed - 1.1.0 (hash-s-2)
91
@@ -107,7 +107,7 @@ fn blank_lines_around_stderr_log_output_update() {
107
108
109
110
111
112
113
Rust is installed now. Great!
0 commit comments