mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-28 17:52:42 +01:00
Remove special casing of "arc --version"
Summary: See PHI1765. You can find version information with "arc version". Remove this undocumented special-case. Test Plan: - Ran `arc --version`, no longer got a workflow API exception. - Searched the documentation for references to `arc --version` (instead of `arc version`), found none. Differential Revision: https://secure.phabricator.com/D21306
This commit is contained in:
parent
0da1a2e17d
commit
7378e2baad
1 changed files with 0 additions and 3 deletions
|
@ -26,9 +26,6 @@ class ArcanistConfiguration extends Phobject {
|
||||||
// Special-case "arc --help" to behave like "arc help" instead of telling
|
// Special-case "arc --help" to behave like "arc help" instead of telling
|
||||||
// you to type "arc help" without being helpful.
|
// you to type "arc help" without being helpful.
|
||||||
$command = 'help';
|
$command = 'help';
|
||||||
} else if ($command == '--version') {
|
|
||||||
// Special-case "arc --version" to behave like "arc version".
|
|
||||||
$command = 'version';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$workflow = idx($this->buildAllWorkflows(), $command);
|
$workflow = idx($this->buildAllWorkflows(), $command);
|
||||||
|
|
Loading…
Reference in a new issue