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

Correct Arcanist repository hooks documentation

Summary: Long ago this was a symlink, but now it's a shell script because symlinks and Windows don't really work. Fixes T2884.

Test Plan: Inspection.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2884

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

+1 -1
+1 -1
src/docs/userguide/arcanist_hooks.diviner
··· 16 16 17 17 #!/bin/sh 18 18 set -e # Exit with an error code if this fails. 19 - /usr/local/bin/php -f /path/to/arcanist/bin/arc svn-hook-pre-commit $@ 1>&2 19 + /path/to/arcanist/bin/arc svn-hook-pre-commit $@ 1>&2 20 20 21 21 Make sure you make this file executable, or you'll get an error for every commit 22 22 with an unhelpful error message. You also need to specify the full path to PHP