mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 17:36:27 +00:00
12 lines
159 B
Bash
Executable File
12 lines
159 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if which nodejs >/dev/null; then
|
|
# Name used by Debian etc.
|
|
NODE=nodejs
|
|
else
|
|
# Name used by upstream
|
|
NODE=node
|
|
fi
|
|
|
|
$NODE "$0".js
|