mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-04-12 04:18:36 +02:00
(stable) Promote 2017 Week 27
This commit is contained in:
commit
b9e79d14c1
3 changed files with 4 additions and 4 deletions
|
@ -1355,7 +1355,7 @@ EOTEXT
|
|||
'Unit testing raised errors, but all '.
|
||||
'failing tests are unsound.'));
|
||||
} else {
|
||||
$continue = $this->console->confirm(
|
||||
$continue = phutil_console_confirm(
|
||||
pht(
|
||||
'Unit test results included failures, but all failing tests '.
|
||||
'are known to be unsound. Ignore unsound test failures?'));
|
||||
|
|
|
@ -1417,7 +1417,7 @@ EOTEXT
|
|||
pht('Harbormaster URI'),
|
||||
$buildable['uri']);
|
||||
|
||||
if (!$console->confirm($prompt)) {
|
||||
if (!phutil_console_confirm($prompt)) {
|
||||
throw new ArcanistUserAbortException();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -518,7 +518,7 @@ EOTEXT
|
|||
$prompt = pht(
|
||||
'Apply this patch to %s?',
|
||||
phutil_console_format('__%s__', $result->getPath()));
|
||||
if (!$console->confirm($prompt, $default = true)) {
|
||||
if (!phutil_console_confirm($prompt, $default_no = false)) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
@ -546,7 +546,7 @@ EOTEXT
|
|||
pht('Automatically amending HEAD with lint patches.'));
|
||||
$amend = true;
|
||||
} else {
|
||||
$amend = $console->confirm(pht('Amend HEAD with lint patches?'));
|
||||
$amend = phutil_console_confirm(pht('Amend HEAD with lint patches?'));
|
||||
}
|
||||
|
||||
if ($amend) {
|
||||
|
|
Loading…
Add table
Reference in a new issue