mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Make the behavior of "--load-phutil-library" more explicit
Summary: This flag disables normal libraries to make it easier to test library changes. Print that out explicitly. Also update `.arcconfig` to use the modern configuration format. Test Plan: Ran `arc list --trace`, `arc list --load-phutil-library=src --trace`. Reviewers: zeeg, btrahan, vrana Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D5768
This commit is contained in:
parent
28df67963b
commit
270f2402de
2 changed files with 6 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
||||||
"conduit_uri" : "https://secure.phabricator.com/",
|
"conduit_uri" : "https://secure.phabricator.com/",
|
||||||
"lint.engine" : "PhutilLintEngine",
|
"lint.engine" : "PhutilLintEngine",
|
||||||
"unit.engine" : "PhutilUnitTestEngine",
|
"unit.engine" : "PhutilUnitTestEngine",
|
||||||
"phutil_libraries" : {
|
"load" : [
|
||||||
"arcanist" : "src/"
|
"src/"
|
||||||
}
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,6 +96,9 @@ try {
|
||||||
// is configured. This is basically a debugging feature to let you force
|
// is configured. This is basically a debugging feature to let you force
|
||||||
// specific libraries to load regardless of the state of the world.
|
// specific libraries to load regardless of the state of the world.
|
||||||
if ($load) {
|
if ($load) {
|
||||||
|
$console->writeLog(
|
||||||
|
"Using '--load-phutil-library' flag, configuration will be ignored ".
|
||||||
|
"and configured libraries will not be loaded."."\n");
|
||||||
// Load the flag libraries. These must load, since the user specified them
|
// Load the flag libraries. These must load, since the user specified them
|
||||||
// explicitly.
|
// explicitly.
|
||||||
arcanist_load_libraries(
|
arcanist_load_libraries(
|
||||||
|
|
Loading…
Reference in a new issue