2020-05-15 00:31:55 -07:00
|
|
|
#!/bin/sh
|
|
|
|
if [ "$#" -gt 0 ]; then
|
|
|
|
# Got started with arguments
|
2022-12-21 08:12:12 -08:00
|
|
|
node "$@"
|
2020-05-15 00:31:55 -07:00
|
|
|
else
|
2022-12-21 08:12:12 -08:00
|
|
|
# Got started without arguments
|
|
|
|
n8n
|
2020-05-15 00:31:55 -07:00
|
|
|
fi
|