@zkochan/pnpm
Version:
A fast implementation of npm install
16 lines (13 loc) • 305 B
text/stylus
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../stylus/bin/stylus" "$@"
ret=$?
else
node "$basedir/../stylus/bin/stylus" "$@"
ret=$?
fi
exit $ret