1
0

feat: 更新版本占位符并重构打包脚本

This commit is contained in:
TsMask
2025-08-15 12:05:17 +08:00
parent 73911f3192
commit 858eec188a
6 changed files with 114 additions and 30 deletions

View File

@@ -111,6 +111,15 @@ makefe() {
makebe() {
cd ${builddir}/bin
#chmod +x mkpkg.sh
EmsBEDir=${rootdir}/be.ems
ProcList="restagent sshsvc"
cd $EmsBEDir
for procName in $ProcList;do
cd $EmsBEDir/$procName
echo "Make $procName ..."
make
done
chmod +x build.sh
./build.sh ${be_args[@]}
}