From 8660f186bf30732d283e4790bc7f2b52a6148c59 Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 21 Jun 2011 16:03:02 -0700 Subject: [PATCH] fix ~/.arcconfig typo Summary: When installing a certificate, it's being written to ~/.arcrc not ~/.arcconfig Test Plan: Installed a certificate it said the right thing. Reviewed By: aran Reviewers: epriestley, aran Commenters: epriestley CC: aran, epriestley Differential Revision: 491 --- .../install-certificate/ArcanistInstallCertificateWorkflow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workflow/install-certificate/ArcanistInstallCertificateWorkflow.php b/src/workflow/install-certificate/ArcanistInstallCertificateWorkflow.php index 15c3c46a..e9cfe5c3 100644 --- a/src/workflow/install-certificate/ArcanistInstallCertificateWorkflow.php +++ b/src/workflow/install-certificate/ArcanistInstallCertificateWorkflow.php @@ -113,7 +113,7 @@ EOTEXT $json_encoder = new PhutilJSON(); $json = $json_encoder->encodeFormatted($config); - echo "Writing ~/.arcconfig...\n"; + echo "Writing ~/.arcrc...\n"; $path = self::getUserConfigurationFileLocation(); Filesystem::writeFile($path, $json);