mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 12:47:36 +08:00
8 lines
158 B
Bash
Executable File
8 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$1" = "debug" ];then
|
|
exec /bin/bash
|
|
elif [ "$1" = "version" ];then
|
|
echo ${RELEASE_DESC}
|
|
else
|
|
exec /usr/bin/rainbond-webcli $@
|
|
fi |