@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.

Update "arc call-conduit" instructions in Conduit API console for required "--"

Summary: See PHI1912. Ref T13491. "arc" now requires "--" when stdin is not a TTY; provide this argument for users.

Test Plan: Viewed example in console, saw "--". Executed example.

Maniphest Tasks: T13491

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

+2
+2
src/applications/conduit/controller/PhabricatorConduitController.php
··· 142 142 $parts[] = '--conduit-token '; 143 143 $parts[] = phutil_tag('strong', array(), '<conduit-token>'); 144 144 $parts[] = ' '; 145 + $parts[] = '--'; 146 + $parts[] = ' '; 145 147 146 148 $parts[] = $method->getAPIMethodName(); 147 149