1 Star 0 Fork 37

neudbsh / elves

forked from 光宇开源 / elves 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
control 894 Bytes
一键复制 编辑 原始数据 按行查看 历史
ToryZen 提交于 2017-07-10 23:02 . init and packall
#!/bin/bash
function packall() {
echo "PACK ELVES-AGENT"
chmod +x ./agent/control && ./agent/control pack
echo "PACK ELVES-CRON"
chmod +x ./cron/control && ./cron/control pack
echo "PACK ELVES-HEARTBEAT"
chmod +x ./heartbeat/control && ./heartbeat/control pack
echo "PACK ELVES-OPENAPI"
chmod +x ./openapi/control && ./openapi/control pack
echo "PACK ELVES-QUEUE"
chmod +x ./queue/control && ./queue/control pack
echo "PACK ELVES-SCHEDULER"
chmod +x ./scheduler/control && ./scheduler/control pack
echo "PACK ELVES-SUPERVISOR"
chmod +x ./supervisor/control && ./supervisor/control pack
}
function init(){
git submodule init
git submodule update
}
function help() {
echo "$0 init|packall"
}
if [ "$1" == "" ]; then
help
elif [ "$1" == "packall" ];then
packall
elif [ "$1" == "init" ];then
init
else
help
fi
Java
1
https://gitee.com/neudbsh/elves.git
git@gitee.com:neudbsh/elves.git
neudbsh
elves
elves
master

搜索帮助