mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Allow loading multiple phutil libraries from command line
Summary: see title Test Plan: loaded multiple libraries Reviewers: blair, epriestley, jungejason Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1668
This commit is contained in:
parent
9fb634880e
commit
09c814ed48
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ foreach ($args as $key => $arg) {
|
||||||
PhutilConsoleFormatter::disableANSI(true);
|
PhutilConsoleFormatter::disableANSI(true);
|
||||||
} else if (preg_match('/^--load-phutil-library=(.*)$/', $arg, $matches)) {
|
} else if (preg_match('/^--load-phutil-library=(.*)$/', $arg, $matches)) {
|
||||||
unset($args[$key]);
|
unset($args[$key]);
|
||||||
$load['?'] = $matches[1];
|
$load[] = $matches[1];
|
||||||
} else if (preg_match('/^--conduit-uri=(.*)$/', $arg, $matches)) {
|
} else if (preg_match('/^--conduit-uri=(.*)$/', $arg, $matches)) {
|
||||||
unset($args[$key]);
|
unset($args[$key]);
|
||||||
$force_conduit = $matches[1];
|
$force_conduit = $matches[1];
|
||||||
|
|
Loading…
Reference in a new issue