From 55353001d43b463f3f2a68640c743cde662dc610 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 22 Jun 2011 00:12:55 -0700 Subject: [PATCH] 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 --- scripts/arcanist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/arcanist.php b/scripts/arcanist.php index ecd306da..76f56638 100755 --- a/scripts/arcanist.php +++ b/scripts/arcanist.php @@ -179,7 +179,7 @@ try { $hosts_config = idx($user_config, 'hosts', 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'); $description = implode(' ', $argv);