Files
DeviceManager/apps/manager/node_modules/.bin/browserslist

18 lines
1018 B
Plaintext
Executable File

#!/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="/home/theaninova/Projects/dotio/node_modules/.pnpm/browserslist@4.22.1/node_modules/browserslist/node_modules:/home/theaninova/Projects/dotio/node_modules/.pnpm/browserslist@4.22.1/node_modules:/home/theaninova/Projects/dotio/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/theaninova/Projects/dotio/node_modules/.pnpm/browserslist@4.22.1/node_modules/browserslist/node_modules:/home/theaninova/Projects/dotio/node_modules/.pnpm/browserslist@4.22.1/node_modules:/home/theaninova/Projects/dotio/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/browserslist@4.22.1/node_modules/browserslist/cli.js" "$@"
else
exec node "$basedir/../../../../node_modules/.pnpm/browserslist@4.22.1/node_modules/browserslist/cli.js" "$@"
fi