diff --git a/conf/aphlict/README b/conf/aphlict/README
--- a/conf/aphlict/README
+++ b/conf/aphlict/README
@@ -8,7 +8,7 @@
To specify a path when starting Aphlict, use the `--config` flag:
- phabricator/ $ ./bin/aphlict start --config path/to/config.json
+ phorge/ $ ./bin/aphlict start --config path/to/config.json
Specifying a configuration file explicitly overrides default configuration.
diff --git a/scripts/init/lib.php b/scripts/init/lib.php
--- a/scripts/init/lib.php
+++ b/scripts/init/lib.php
@@ -13,7 +13,7 @@
if (!$ok) {
echo
'FATAL ERROR: Unable to load the "Arcanist" library. '.
- 'Put "arcanist/" next to "phabricator/" on disk.';
+ 'Put "arcanist/" next to "phorge/" on disk.';
echo "\n";
exit(1);
diff --git a/src/applications/config/option/PhabricatorConfigOption.php b/src/applications/config/option/PhabricatorConfigOption.php
--- a/src/applications/config/option/PhabricatorConfigOption.php
+++ b/src/applications/config/option/PhabricatorConfigOption.php
@@ -77,7 +77,7 @@
'This configuration is locked and can not be edited from the web '.
'interface. Use %s in %s to edit it.',
phutil_tag('tt', array(), './bin/config'),
- phutil_tag('tt', array(), 'phabricator/'));
+ phutil_tag('tt', array(), PlatformSymbols::getPlatformServerPath()));
}
public function addExample($value, $description) {
diff --git a/src/applications/metamta/management/PhabricatorMailManagementReceiveTestWorkflow.php b/src/applications/metamta/management/PhabricatorMailManagementReceiveTestWorkflow.php
--- a/src/applications/metamta/management/PhabricatorMailManagementReceiveTestWorkflow.php
+++ b/src/applications/metamta/management/PhabricatorMailManagementReceiveTestWorkflow.php
@@ -181,8 +181,9 @@
$received->processReceivedMail();
$console->writeErr(
- "%s\n\n phabricator/ $ ./bin/mail show-inbound --id %d\n\n",
+ "%s\n\n %s $ ./bin/mail show-inbound --id %d\n\n",
pht('Mail received! You can view details by running this command:'),
+ PlatformSymbols::getPlatformServerPath(),
$received->getID());
}
diff --git a/src/applications/metamta/management/PhabricatorMailManagementSendTestWorkflow.php b/src/applications/metamta/management/PhabricatorMailManagementSendTestWorkflow.php
--- a/src/applications/metamta/management/PhabricatorMailManagementSendTestWorkflow.php
+++ b/src/applications/metamta/management/PhabricatorMailManagementSendTestWorkflow.php
@@ -225,8 +225,9 @@
$mail->save();
$console->writeErr(
- "%s\n\n phabricator/ $ ./bin/mail show-outbound --id %d\n\n",
+ "%s\n\n %s $ ./bin/mail show-outbound --id %d\n\n",
pht('Mail sent! You can view details by running this command:'),
+ PlatformSymbols::getPlatformServerPath(),
$mail->getID());
}
diff --git a/src/applications/people/controller/PhabricatorPeopleDeleteController.php b/src/applications/people/controller/PhabricatorPeopleDeleteController.php
--- a/src/applications/people/controller/PhabricatorPeopleDeleteController.php
+++ b/src/applications/people/controller/PhabricatorPeopleDeleteController.php
@@ -27,9 +27,12 @@
'To permanently destroy this user, run this command from the '.
'command line:'))
->appendCommand(
- csprintf(
- 'phabricator/ $ ./bin/remove destroy %R',
- $user->getMonogram()))
+ hsprintf(
+ '%s $ %s',
+ PlatformSymbols::getPlatformServerPath(),
+ csprintf(
+ './bin/remove destroy %R',
+ $user->getMonogram())))
->appendParagraph(
pht(
'Unless you have a very good reason to delete this user, consider '.
diff --git a/src/applications/transactions/bulk/PhabricatorEditEngineBulkJobType.php b/src/applications/transactions/bulk/PhabricatorEditEngineBulkJobType.php
--- a/src/applications/transactions/bulk/PhabricatorEditEngineBulkJobType.php
+++ b/src/applications/transactions/bulk/PhabricatorEditEngineBulkJobType.php
@@ -30,9 +30,12 @@
$parts[] = pht('To silence this edit, run this command:');
- $command = csprintf(
- 'phabricator/ $ ./bin/bulk make-silent --id %R',
- $job->getID());
+ $command = hsprintf(
+ '%s $ %s',
+ PlatformSymbols::getPlatformServerPath(),
+ csprintf('
+ ./bin/bulk make-silent --id %R',
+ $job->getID()));
$command = (string)$command;
$parts[] = phutil_tag('tt', array(), $command);
diff --git a/src/infrastructure/events/PhabricatorAutoEventListener.php b/src/infrastructure/events/PhabricatorAutoEventListener.php
--- a/src/infrastructure/events/PhabricatorAutoEventListener.php
+++ b/src/infrastructure/events/PhabricatorAutoEventListener.php
@@ -10,6 +10,6 @@
*
* All concrete subclasses of this class are automatically registered at
* startup. This allows it to be used with custom one-offs that can be dropped
- * into `phabricator/src/extensions/`.
+ * into `phorge/src/extensions/`.
*/
abstract class PhabricatorAutoEventListener extends PhabricatorEventListener {}