1
0
Fork 0
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:
epriestley 2017-07-07 16:42:10 -07:00
commit b9e79d14c1
3 changed files with 4 additions and 4 deletions

View file

@ -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?'));

View file

@ -1417,7 +1417,7 @@ EOTEXT
pht('Harbormaster URI'),
$buildable['uri']);
if (!$console->confirm($prompt)) {
if (!phutil_console_confirm($prompt)) {
throw new ArcanistUserAbortException();
}
}

View file

@ -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) {