mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-27 14:02:40 +02:00
9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$#" -gt 0 ]; then
|
|
# Got started with arguments
|
|
exec n8n "$@"
|
|
else
|
|
# Got started without arguments
|
|
exec n8n
|
|
fi
|