bold-peaches-cheer/node_modules/.bin/conc
2026-05-13 12:22:02 +05:00

22 lines
1.3 KiB
Bash
Executable File

#!/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/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules/concurrently/dist/bin/node_modules:/home/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules/concurrently/dist/node_modules:/home/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules/concurrently/node_modules:/home/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules:/home/taylordb/app/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules/concurrently/dist/bin/node_modules:/home/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules/concurrently/dist/node_modules:/home/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules/concurrently/node_modules:/home/taylordb/app/node_modules/.pnpm/concurrently@9.2.1/node_modules:/home/taylordb/app/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../concurrently/dist/bin/concurrently.js" "$@"
else
exec node "$basedir/../concurrently/dist/bin/concurrently.js" "$@"
fi