mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-09-23 18:40:44 +02: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
|