#!/bin/sh

# NOTE: This file is a wrapper script instead of a symlink so it will work in
# the Git Bash environment in Windows.

# Do shell magic to resolve the real location of this script through aliases,
# symlinks, etc.
SOURCE="$0";
while [ -h "$SOURCE" ]; do
  LINK="$(readlink "$SOURCE")";
  # Test if the first character of $LINK is / by removing it from the front
  # and testing equality
  if [ "${LINK#/}" != "$LINK" ]; then
    # absolute symlink
    SOURCE="$LINK"
  else
    # relative symlink
    SOURCE="$(cd -P "$(dirname "$SOURCE")" && pwd)/$LINK"
  fi
done;
DIR="$(cd -P "$(dirname "$SOURCE")" && pwd)"

exec "$DIR/../scripts/arcanist.php" "$@"
