mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-08 22:01:02 +01:00
Couple of fixes from refactor
Test Plan: arc set-<tab> <enter> from a not-workspace. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7354
This commit is contained in:
parent
d85f7bee66
commit
359e1c2803
2 changed files with 2 additions and 2 deletions
|
@ -144,7 +144,7 @@ EOTEXT
|
|||
echo phutil_console_format(" Example: %s\n", $example);
|
||||
}
|
||||
if (strlen($value)) {
|
||||
echo phutil_console_format(" User Setting: %s\n", $value);
|
||||
echo phutil_console_format(" User Setting: %s\n", $value);
|
||||
}
|
||||
echo "\n";
|
||||
echo phutil_console_wrap($help, 4);
|
||||
|
|
|
@ -59,8 +59,8 @@ EOTEXT
|
|||
// if we aren't in a .arcconfig directory. We probably still can't do much,
|
||||
// but commands can raise more detailed errors.
|
||||
$working_copy = ArcanistWorkingCopyIdentity::newFromPath(getcwd());
|
||||
$configuration_manager = $this->getConfigurationManager();
|
||||
if ($working_copy->getProjectRoot()) {
|
||||
$configuration_manager = $this->getConfigurationManager();
|
||||
$configuration_manager->setWorkingCopyIdentity($working_copy);
|
||||
$repository_api = ArcanistRepositoryAPI::newAPIFromConfigurationManager(
|
||||
$configuration_manager);
|
||||
|
|
Loading…
Reference in a new issue