Skip to content

Commit

Permalink
Merge pull request #2529 from creekorful/fixes/2514
Browse files Browse the repository at this point in the history
do_msvc_check: set default choice to no
  • Loading branch information
rbtcollins authored Feb 25, 2021
2 parents fc2f6b1 + 7d7a0bf commit 96107c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/self_update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ pub fn install(
warn!("installing msvc toolchain without its prerequisites");
} else {
md(&mut term, MSVC_MESSAGE);
if !common::confirm("\nContinue? (Y/n)", true)? {
if !common::confirm("\nContinue? (y/N)", false)? {
info!("aborting installation");
return Ok(utils::ExitCode(0));
}
Expand Down

0 comments on commit 96107c4

Please sign in to comment.