Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remark « .bin « node_modules « eslint « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba550cb8cd2550b6ae7dcb713679d583dd5bc086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
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/../remark/cli.js" "$@"
  ret=$?
else
  node  "$basedir/../remark/cli.js" "$@"
  ret=$?
fi
exit $ret