aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/.bin/uuid
blob: c3ec0035f9952484cd7a89dd063aff6ae4c9cc9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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
  exec "$basedir/node"  "$basedir/../uuid/dist/bin/uuid" "$@"
else 
  exec node  "$basedir/../uuid/dist/bin/uuid" "$@"
fi