Skip to content

Commit 4fe6fd3

Browse files
committed
fix(installer): remove misleading quotes from version input prompt
1 parent 7f1a311 commit 4fe6fd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/vite_installer/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ fn show_customize_menu(opts: &mut cli::Options) {
456456
match choice.as_str() {
457457
"" => return,
458458
"1" => {
459-
let v = read_input(" Version (e.g. 0.3.0, or 'latest'): ");
459+
let v = read_input(" Version (e.g. 0.3.0 or latest): ");
460460
if v == "latest" || v.is_empty() {
461461
opts.version = None;
462462
} else {

0 commit comments

Comments
 (0)