mirror of
https://github.com/diligencia/semantic-branch-version.git
synced 2024-11-23 20:43:51 +08:00
16 lines
316 B
Bash
16 lines
316 B
Bash
#!/bin/sh
|
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
|
|
case `uname` in
|
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
|
esac
|
|
|
|
if [ -x "$basedir/node" ]; then
|
|
"$basedir/node" "$basedir/../which/bin/which" "$@"
|
|
ret=$?
|
|
else
|
|
node "$basedir/../which/bin/which" "$@"
|
|
ret=$?
|
|
fi
|
|
exit $ret
|