Match default choice to actual default (#11010)
The 'Y' is capital, so Yes should be the default choice and is what most people would want, but No was the default.pull/11008/head
parent
20b3e3e79c
commit
cad5dc5b8b
|
@ -596,7 +596,7 @@ TAGSPUBKEY
|
|||
$helpMessage = 'Please run the self-update command as an Administrator.';
|
||||
$question = 'Complete this operation with Administrator privileges [<comment>Y,n</comment>]? ';
|
||||
|
||||
if (!$io->askConfirmation($question, false)) {
|
||||
if (!$io->askConfirmation($question, true)) {
|
||||
$io->writeError('<warning>Operation cancelled. '.$helpMessage.'</warning>');
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue