mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 04:38:04 +08:00
8 lines
157 B
Bash
Executable File
8 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$1" = "bash" ];then
|
|
exec /bin/bash
|
|
elif [ "$1" = "version" ];then
|
|
/run/rainbond-node version
|
|
else
|
|
exec /run/rainbond-node $@
|
|
fi |