source:
trip-planner-front/node_modules/.bin/uuid@
76712b2
Last change on this file since 76712b2 was e29cc2e, checked in by , 3 years ago | |
---|---|
|
|
File size: 312 bytes |
Rev | Line | |
---|---|---|
[6a3a178] | 1 | #!/bin/sh |
2 | basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |
3 | ||
4 | case `uname` in | |
5 | *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | |
6 | esac | |
7 | ||
8 | if [ -x "$basedir/node" ]; then | |
[e29cc2e] | 9 | "$basedir/node" "$basedir/../uuid/bin/uuid" "$@" |
[59329aa] | 10 | ret=$? |
[6a3a178] | 11 | else |
[e29cc2e] | 12 | node "$basedir/../uuid/bin/uuid" "$@" |
[59329aa] | 13 | ret=$? |
[6a3a178] | 14 | fi |
[59329aa] | 15 | exit $ret |
Note:
See TracBrowser
for help on using the repository browser.