mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
Stop defualting to USER from env in arcanist
Summary: This once made sense but hasn't been a reasonable default for a long time, get rid of it. Test Plan: Ran "arc list". Reviewers: llorca, toulouse CC: Differential Revision: 496
This commit is contained in:
parent
8660f186bf
commit
55353001d4
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ try {
|
||||||
|
|
||||||
$hosts_config = idx($user_config, 'hosts', array());
|
$hosts_config = idx($user_config, 'hosts', array());
|
||||||
$host_config = idx($hosts_config, $conduit_uri, array());
|
$host_config = idx($hosts_config, $conduit_uri, array());
|
||||||
$user_name = idx($host_config, 'user', getenv('USER'));
|
$user_name = idx($host_config, 'user');
|
||||||
$certificate = idx($host_config, 'cert');
|
$certificate = idx($host_config, 'cert');
|
||||||
|
|
||||||
$description = implode(' ', $argv);
|
$description = implode(' ', $argv);
|
||||||
|
|
Loading…
Reference in a new issue