1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

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
This commit is contained in:
epriestley 2011-06-21 16:03:02 -07:00
parent 63e7ddc12d
commit 8660f186bf

View file

@ -113,7 +113,7 @@ EOTEXT
$json_encoder = new PhutilJSON(); $json_encoder = new PhutilJSON();
$json = $json_encoder->encodeFormatted($config); $json = $json_encoder->encodeFormatted($config);
echo "Writing ~/.arcconfig...\n"; echo "Writing ~/.arcrc...\n";
$path = self::getUserConfigurationFileLocation(); $path = self::getUserConfigurationFileLocation();
Filesystem::writeFile($path, $json); Filesystem::writeFile($path, $json);