setup-python/node_modules/.bin/run-node
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04:00

16 lines
305 B
Bash

#!/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