From 63e7ddc12d6471992b09eb7029d8ae943b8cf78a Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 20 Jun 2011 06:01:46 -0700 Subject: [PATCH] Point certificate documentation at "arc install-certificate". --- scripts/arcanist.php | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/scripts/arcanist.php b/scripts/arcanist.php index 0f78cfad..ecd306da 100755 --- a/scripts/arcanist.php +++ b/scripts/arcanist.php @@ -197,26 +197,16 @@ try { } catch (ConduitClientException $ex) { if ($ex->getErrorCode() == 'ERR-NO-CERTIFICATE') { $message = - "\n\n". + "\n". phutil_console_format( "YOU NEED TO __INSTALL A CERTIFICATE__ TO LOGIN TO PHABRICATOR"). "\n\n". - "The server '{$conduit_uri}' rejected your request:". + phutil_console_format( + " To do this, run: **arc install-certificate**"). "\n\n". - $ex->getMessage(). - "\n\n"; - $hosts_with_cert = ifilter($hosts_config, 'cert'); - if (!empty($hosts_with_cert)) { - if (count($hosts_with_cert) == 1) { - $message .= - "You currently have a certificate installed for one host:\n\n"; - } else { - $message .= - "You currently have certificates installed for these hosts:\n\n"; - } - $message .= ' '.implode("\n ", array_keys($hosts_with_cert)); - $message .= "\n"; - } + "The server '{$conduit_uri}' rejected your request:". + "\n". + $ex->getMessage(); throw new ArcanistUsageException($message); } else { throw $ex;