setup-python/node_modules/.bin/run-node

16 lines
305 B
Plaintext
Raw Normal View History

2019-06-27 01:12:00 +00:00
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/bash" ]; then
"$basedir/bash" "$basedir/../run-node/run-node" "$@"
ret=$?
else
bash "$basedir/../run-node/run-node" "$@"
ret=$?
fi
exit $ret