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/11048/head
parent
2152b20a94
commit
e823f24940
|
@ -600,7 +600,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