mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-05 05:07:38 +08:00
8 lines
150 B
Bash
8 lines
150 B
Bash
|
#!/bin/bash
|
||
|
if [ "$1" = "bash" ];then
|
||
|
exec /bin/bash
|
||
|
elif [ "$1" = "version" ];then
|
||
|
echo ${RELEASE_DESC}
|
||
|
else
|
||
|
exec /run/rainbond-worker
|
||
|
fi
|