From 0729aa574bfd05bdd510ff48717a92a349f20640 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Fri, 10 Nov 2023 09:13:09 +0000 Subject: [PATCH] Remove mention of Phabricator in the Auth setup check Summary: The authentication setup check, available at /config/issue/auth.config-unlocked/, contained a reference to Phabricator in the prompt of the command line hint to resolve the issue. Similar checks only showed the prompt symbol, not the directory, so this one was changed to match. Ref T15006 Test Plan: - Run `./bin/auth unlock` - Visit /config/issue/auth.config-unlocked/ - Notice that, with this patch, "phabricator" no longer appears in the prompt prefix for the suggested fix command at the end of the page. Reviewers: O1 Blessed Committers, valerio.bozzolan, speck Reviewed By: O1 Blessed Committers, valerio.bozzolan, speck Subscribers: avivey, tobiaswiese, Matthew, valerio.bozzolan, Cigaryno Maniphest Tasks: T15006 Differential Revision: https://we.phorge.it/D25425 --- src/applications/config/check/PhabricatorAuthSetupCheck.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/config/check/PhabricatorAuthSetupCheck.php b/src/applications/config/check/PhabricatorAuthSetupCheck.php index e2b076944e..b971404c38 100644 --- a/src/applications/config/check/PhabricatorAuthSetupCheck.php +++ b/src/applications/config/check/PhabricatorAuthSetupCheck.php @@ -74,7 +74,7 @@ final class PhabricatorAuthSetupCheck extends PhabricatorSetupCheck { ->addRelatedPhabricatorConfig('auth.lock-config') ->addCommand( hsprintf( - 'phabricator/ $ ./bin/auth lock')); + '$ ./bin/auth lock')); } } }