Last change
on this file since 571e0df was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago |
adding photos
|
-
Property mode
set to
100644
|
File size:
324 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
|
---|
[59329aa] | 9 | "$basedir/node" "$basedir/../esbuild/bin/esbuild" "$@"
|
---|
| 10 | ret=$?
|
---|
[6a3a178] | 11 | else
|
---|
[59329aa] | 12 | node "$basedir/../esbuild/bin/esbuild" "$@"
|
---|
| 13 | ret=$?
|
---|
[6a3a178] | 14 | fi
|
---|
[59329aa] | 15 | exit $ret
|
---|
Note:
See
TracBrowser
for help on using the repository browser.