daikins/.svn/pristine/8d/8d7a321b26c797cf8b76588d9ee...

18 lines
1.3 KiB
Bash

#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules/npm-run-all/bin/npm-run-all/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules/npm-run-all/bin/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules/npm-run-all/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules/npm-run-all/bin/npm-run-all/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules/npm-run-all/bin/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules/npm-run-all/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/npm-run-all@4.1.5/node_modules:/mnt/c/Users/ljl/Desktop/dajin/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../npm-run-all/bin/npm-run-all/index.js" "$@"
else
exec node "$basedir/../npm-run-all/bin/npm-run-all/index.js" "$@"
fi