mirror of
https://github.com/bodyrep/DemoApp.git
synced 2026-01-25 14:43:00 +00:00
10 lines
228 B
Bash
10 lines
228 B
Bash
#!/bin/sh
|
|
if [ -x "`dirname "$0"`/node" ]; then
|
|
"`dirname "$0"`/node" "`dirname "$0"`/../supervisor/lib/cli-wrapper.js" "$@"
|
|
ret=$?
|
|
else
|
|
node "`dirname "$0"`/../supervisor/lib/cli-wrapper.js" "$@"
|
|
ret=$?
|
|
fi
|
|
exit $ret
|