mirror of https://github.com/zulip/zulip.git
12 lines
206 B
Plaintext
12 lines
206 B
Plaintext
|
#!/bin/bash -e
|
||
|
|
||
|
# Wrapper for node which finds the right binary.
|
||
|
|
||
|
if which nodejs >/dev/null; then
|
||
|
# Name used by Debian etc.
|
||
|
exec nodejs "$@"
|
||
|
else
|
||
|
# Name used by upstream
|
||
|
exec node "$@"
|
||
|
fi
|