From e9798a9bf482287471c92553fb64b7622c1350b7 Mon Sep 17 00:00:00 2001 From: p Date: Fri, 14 Aug 2026 15:25:52 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20build.sh=20=E9=9B=86=E6=88=90=E4=BA=A7?= =?UTF-8?q?=E5=93=81/=E6=8A=98=E6=89=A3/=E5=AE=9A=E4=BB=B7/=E6=94=AF?= =?UTF-8?q?=E4=BB=98/=E7=9F=AD=E4=BF=A1=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 307173b..489d219 100644 --- a/build.sh +++ b/build.sh @@ -52,7 +52,7 @@ for mod in pipeline_core pipeline_ops pipeline_dist; do done # 5. Install business modules (clone external, local already in pkgs) -for mod in pipeline-sdlc showcase evaluate pipeline-service pipeline-task tenant app_audit; do +for mod in pipeline-sdlc showcase evaluate pipeline-service pipeline-task tenant app_audit product_management discount pricing unipay smssend; do cd "$cdir/pkgs" if [ ! -d "$mod" ]; then git clone https://git.opencomputing.cn/yumoqing/$mod || echo "SKIP: $mod" @@ -61,7 +61,7 @@ for mod in pipeline-sdlc showcase evaluate pipeline-service pipeline-task tenant done # 6. pip install all modules from pkgs/ -for mod in pipeline_core pipeline_ops pipeline_dist pipeline-sdlc showcase tenant app_audit; do +for mod in pipeline_core pipeline_ops pipeline_dist pipeline-sdlc showcase tenant app_audit product_management discount pricing unipay smssend; do if [ -d "pkgs/$mod" ]; then "$cdir/py3/bin/pip" install "pkgs/$mod/" 2>&1 | tail -1 fi @@ -81,7 +81,7 @@ done # 8. Link module wwwroot directories (symlinks from pkgs/) -for mod in pipeline-sdlc showcase tenant pipeline_core pipeline_ops pipeline_dist appbase app_audit; do +for mod in pipeline-sdlc showcase tenant pipeline_core pipeline_ops pipeline_dist appbase app_audit product_management discount pricing unipay; do src="pkgs/$mod/wwwroot" dst="wwwroot/$mod" if [ -d "$src" ]; then