1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 16:38:51 +02:00

Fix "arc" when arcanist/ lives in some directory with spaces in the name

Summary: This shell script needs more quotes.

Test Plan: Ran "arc" with `arcanist/` inside a directory called `s p a c e s`.

Reviewers: irinav, vrana

Reviewed By: vrana

CC: aran

Differential Revision: https://secure.phabricator.com/D5265
This commit is contained in:
epriestley 2013-03-06 14:43:18 -08:00
parent d31385912f
commit 419d7de1bf

View file

@ -18,4 +18,4 @@ while [ -h "$SOURCE" ]; do
done;
DIR="$(cd -P "$(dirname "$SOURCE")" && pwd)"
exec $DIR/../scripts/arcanist.php "$@"
exec "$DIR/../scripts/arcanist.php" "$@"