Files
MoGoEagleEye/upload.sh
donghongyu 92565c7c6e [Upload] 发布 Maven
0.0.46
2.1.4
增加打开设置速度
CallerHmiManager.showToolsView()
CallerHmiManager.hideToolsView()

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
2021-12-13 11:26:50 +08:00

12 lines
234 B
Bash
Executable File

#!/bin/bash
function upload(){
./gradlew $1:clean $1:uploadArchives
if [ $? -ne 0 ];the n exit; fi
}
for module in `cat modules.txt`;
do
upload $module
done
echo -e "\033[32m 恭喜你完成了所有MoGo模块上传 \033[0m"