1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-21 22:32:41 +01:00

Change "any" to explicitly list revision control systems

Summary: Using `array('any')` to represent `array('git', 'hg', 'svn')` is a bit magical and leads to a lot of special-casing.

Test Plan: Verified that tab completion (ala `ArcanistShellCompleteWorkflow`) still worked.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11604
This commit is contained in:
Joshua Spence 2015-02-02 18:18:36 +11:00
parent 8cad12034f
commit 623df14ae5
2 changed files with 2 additions and 5 deletions

View file

@ -82,10 +82,7 @@ EOTEXT
continue;
}
$supported = $workflow->getSupportedRevisionControlSystems();
$ok = (in_array('any', $supported) || in_array($vcs, $supported));
if (!$ok) {
if (!in_array($vcs, $workflow->getSupportedRevisionControlSystems())) {
continue;
}

View file

@ -1216,7 +1216,7 @@ abstract class ArcanistWorkflow extends Phobject {
}
protected function getSupportedRevisionControlSystems() {
return array('any');
return array('git', 'hg', 'svn');
}
final protected function getPassthruArgumentsAsMap($command) {