7 lines
117 B
Bash
7 lines
117 B
Bash
#!/bin/sh
|
|
if ! which -- "${1}"; then
|
|
# first arg is not an executable
|
|
exec node /usr/src/app/ "$@"
|
|
fi
|
|
|
|
exec "$@"
|