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