This commit is contained in:
luoliangyi 2022-09-30 11:08:02 +08:00
parent 50ded46da0
commit 04edfa4d64
1 changed files with 6 additions and 1 deletions

View File

@ -191,7 +191,12 @@ elif [ "$oem" == "lscso" ] || [ "$oem" == "lscsm" ];then
./build.sh lsc
fi
./build.sh $oem
if [ "$oem" == "lscsm" ];then
./build.sh lsc
else
./build.sh $oem
fi
if [ $? -ne 0 ];then
echo "code_app-------->编译失败"