mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
9 lines
125 B
Bash
Executable file
9 lines
125 B
Bash
Executable file
#!/bin/sh
|
|
if [ "$#" -gt 0 ]; then
|
|
# Got started with arguments
|
|
node "$@"
|
|
else
|
|
# Got started without arguments
|
|
n8n
|
|
fi
|