@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Swap "-R" and "serve" argument order for Mercurial

Summary: See <https://discourse.phabricator-community.org/t/unable-to-use-current-mercurial-on-debian-stretch/391/13>. I missed that `-R` is order-sensitive.

Test Plan: Verified both orders work on 3.5.2.

Reviewers: amckinley

Reviewed By: amckinley

Differential Revision: https://secure.phabricator.com/D18616

+1 -1
+1 -1
src/applications/diffusion/controller/DiffusionServeController.php
··· 769 769 } 770 770 771 771 $command = csprintf( 772 - '%s serve -R %s --stdio', 772 + '%s -R %s serve --stdio', 773 773 $bin, 774 774 $repository->getLocalPath()); 775 775 $command = PhabricatorDaemon::sudoCommandAsDaemonUser($command);