#!/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/tsdown@0.22.14_@typescript+typescript6@6.0.2_tsx@4.23.12/node_modules/tsdown/node_modules:/home/user/runs/content-model-t6-test/node_modules/.pnpm/tsdown@0.22.14_@typescript+typescript6@6.0.2_tsx@4.23.12/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/tsdown@0.22.14_@typescript+typescript6@6.0.2_tsx@4.23.12/node_modules/tsdown/node_modules:/home/user/runs/content-model-t6-test/node_modules/.pnpm/tsdown@0.22.14_@typescript+typescript6@6.0.2_tsx@4.23.12/node_modules:/home/user/runs/content-model-t6-test/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -n "$exe" ] && [ -x "$basedir/node.exe" ]; then
  exec "$basedir/node.exe"  "$basedir_win/../tsdown/dist/run.mjs" "$@"
elif [ -x "$basedir/node" ]; then
  exec "$basedir/node"  "$basedir/../tsdown/dist/run.mjs" "$@"
elif command -v node >/dev/null 2>&1; then
  exec node  "$basedir/../tsdown/dist/run.mjs" "$@"
elif [ -n "$exe" ] && command -v node.exe >/dev/null 2>&1; then
  exec node.exe  "$basedir_win/../tsdown/dist/run.mjs" "$@"
else
  exec node  "$basedir/../tsdown/dist/run.mjs" "$@"
fi
# cmd-shim-target=/home/user/runs/content-model-t6-test/packages/entitlements/node_modules/tsdown/dist/run.mjs
