mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-21 22:32:41 +01: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:
parent
d31385912f
commit
419d7de1bf
1 changed files with 1 additions and 1 deletions
2
bin/arc
2
bin/arc
|
@ -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" "$@"
|
||||
|
|
Loading…
Reference in a new issue