1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2025-02-06 03:48:28 +01:00

(stable) Promote 2018 Week 6

This commit is contained in:
epriestley 2018-02-09 17:16:25 -08:00
commit 22b0893473
2 changed files with 10 additions and 4 deletions

View file

@ -135,7 +135,9 @@ EOTEXT
'patches suggested by lint without prompting.'), 'patches suggested by lint without prompting.'),
), ),
'everything' => array( 'everything' => array(
'help' => pht('Lint all files in the project.'), 'help' => pht(
'Lint all tracked files in the working copy. Ignored files and '.
'untracked files will not be linted.'),
'conflicts' => array( 'conflicts' => array(
'cache' => pht('%s lints all files', '--everything'), 'cache' => pht('%s lints all files', '--everything'),
'rev' => pht('%s lints all files', '--everything'), 'rev' => pht('%s lints all files', '--everything'),
@ -200,7 +202,8 @@ EOTEXT
if ($everything && $paths) { if ($everything && $paths) {
throw new ArcanistUsageException( throw new ArcanistUsageException(
pht( pht(
'You can not specify paths with %s. The %s flag lints every file.', 'You can not specify paths with %s. The %s flag lints every '.
'tracked file in the working copy.',
'--everything', '--everything',
'--everything')); '--everything'));
} }

View file

@ -91,7 +91,9 @@ EOTEXT
'Harbormaster build target.'), 'Harbormaster build target.'),
), ),
'everything' => array( 'everything' => array(
'help' => pht('Run every test.'), 'help' => pht(
'Run every test associated with a tracked file in the working '.
'copy.'),
'conflicts' => array( 'conflicts' => array(
'rev' => pht('%s runs all tests.', '--everything'), 'rev' => pht('%s runs all tests.', '--everything'),
), ),
@ -134,7 +136,8 @@ EOTEXT
if ($everything && $paths) { if ($everything && $paths) {
throw new ArcanistUsageException( throw new ArcanistUsageException(
pht( pht(
'You can not specify paths with %s. The %s flag runs every test.', 'You can not specify paths with %s. The %s flag runs every test '.
'associated with a tracked file in the working copy.',
'--everything', '--everything',
'--everything')); '--everything'));
} }