1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-20 00:49:11 +02:00

Replace "bin/arc" with a shell script

Summary: Currently, we use a symlink. Under git bash, it tries to run the symlink. This is not a recipe for success. Instead, use a trivial wrapper script.

Test Plan: Ran "arc" from git bash.

Reviewers: Makinde, btrahan, Koolvin

Reviewed By: Koolvin

CC: aran, epriestley

Maniphest Tasks: T124

Differential Revision: https://secure.phabricator.com/D1939
This commit is contained in:
epriestley 2012-03-19 19:23:41 -07:00
parent 31a54d9b4a
commit 27725b073e

View file

@ -1 +0,0 @@
../scripts/arcanist.php

7
bin/arc Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
# NOTE: This file is a wrapper script instead of a symlink so it will work in
# the Git Bash environment in Windows.
exec `dirname $0`/../scripts/arcanist.php $@