mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-21 22:32:41 +01:00
27725b073e
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
7 lines
175 B
Bash
Executable file
7 lines
175 B
Bash
Executable file
#!/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 $@
|
|
|