#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")

case `uname` in
    *CYGWIN*|*MINGW*|*MSYS*)
        if command -v cygpath > /dev/null 2>&1; then
            basedir=`cygpath -w "$basedir"`
        fi
    ;;
esac

if [ -z "$NODE_PATH" ]; then
  export NODE_PATH="/home/user/Projects/multideal/node_modules/.pnpm/@ast-grep+cli@0.44.1/node_modules/@ast-grep/cli/node_modules:/home/user/Projects/multideal/node_modules/.pnpm/@ast-grep+cli@0.44.1/node_modules:/home/user/Projects/multideal/node_modules/.pnpm/node_modules"
else
  export NODE_PATH="/home/user/Projects/multideal/node_modules/.pnpm/@ast-grep+cli@0.44.1/node_modules/@ast-grep/cli/node_modules:/home/user/Projects/multideal/node_modules/.pnpm/@ast-grep+cli@0.44.1/node_modules:/home/user/Projects/multideal/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
"$basedir/../@ast-grep/cli/ast-grep"   "$@"
exit $?
