#!/bin/sh
# Resolve $0 through symlinks so basedir is the shim's real directory.
# Cap hops at the kernel's ELOOP limit so a cycle cannot hang the shim.
link="$0"
hops=0
while [ -L "$link" ] && [ "$hops" -lt 40 ]; do
  hops=$((hops+1))
  target=$(readlink "$link")
  case "$target" in
    /*) link="$target" ;;
    *)  link="$(dirname "$link")/$target" ;;
  esac
done
basedir=$(dirname "$(echo "$link" | sed -e 's,\\,/,g')")
basedir_win="$basedir"
exe=""
msys=""

case `uname -a` in
  *CYGWIN*|*MINGW*|*MSYS*)
    if command -v cygpath > /dev/null 2>&1; then
      basedir_win=`cygpath -w "$basedir"`
    fi
    exe=".exe"
    msys="true"
  ;;
  *WSL2*)
    if command -v wslpath > /dev/null 2>&1; then
      basedir_win="$(wslpath -w "$basedir" 2> /dev/null)"
      if [ $? -ne 0 ] || [ -z "$basedir_win" ]; then
        basedir_win="$basedir"
      else
        exe=".exe"
      fi
    fi
  ;;
esac

if [ -z "$NODE_PATH" ]; then
  export NODE_PATH="/home/user/runs/content-model-t6-test/node_modules/.pnpm/@ast-grep+cli@0.45.1/node_modules/@ast-grep/cli/node_modules:/home/user/runs/content-model-t6-test/node_modules/.pnpm/@ast-grep+cli@0.45.1/node_modules:/home/user/runs/content-model-t6-test/node_modules/.pnpm/node_modules"
else
  export NODE_PATH="/home/user/runs/content-model-t6-test/node_modules/.pnpm/@ast-grep+cli@0.45.1/node_modules/@ast-grep/cli/node_modules:/home/user/runs/content-model-t6-test/node_modules/.pnpm/@ast-grep+cli@0.45.1/node_modules:/home/user/runs/content-model-t6-test/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
exec "$basedir/../@ast-grep/cli/sg"   "$@"
exit $?
# cmd-shim-target=/home/user/runs/content-model-t6-test/node_modules/@ast-grep/cli/sg
