From 284ff43902b362aa38b44be43d84625cde844c04 Mon Sep 17 00:00:00 2001 From: lizw Date: Tue, 8 Feb 2022 09:44:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E5=8F=82=E6=9E=97=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E7=8E=AF=E5=A2=83=E9=83=A8=E7=BD=B2=E8=84=9A?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dsl/build.sh | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/dsl/build.sh b/dsl/build.sh index e650aa3..ecf71d5 100644 --- a/dsl/build.sh +++ b/dsl/build.sh @@ -2,27 +2,23 @@ #set -x set -e -codePath=/data3/yvan-framework +codePath=/data3/thinkingwms-ui gitUrlArr=( - "http://git.yvanui.com/yvan-private/yvan-framework.git" - "http://git.yvanui.com/jztd/yvan-ext.git" "http://git.yvanui.com/jztd/thinkingwms-ui.git" + "http://git.yvanui.com/jztd/yvan-ext.git" ) branchArr=( "master" "master" - "master" ) positionArr=( "." "yvan-ext" - "thinkingwms-ui" ) # 是否需要构建,-1:自动;0:不需要;1:需要 needBuild=( "-1" "-1" -"-1" ) echoPrefix="\033[36m+" @@ -92,8 +88,8 @@ buildCode() { # 构建 thinkingwms-ui/client if [ "${needBuild[2]}" != "0" ]; then - echo -e "$echoPrefix cd $codePath/thinkingwms-ui/client $echoSuffix" - cd "$codePath/thinkingwms-ui/client" + echo -e "$echoPrefix cd $codePath/client $echoSuffix" + cd "$codePath/client" echo -e "$echoPrefix yarn $echoSuffix" yarn echo -e "$echoPrefix yarn link yvan-ext $echoSuffix"