Browse Source

优化部署文件

dev-service-czh
chenzhihang 1 year ago
parent
commit
2e6c47ccab
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      k8s/build-java.sh

+ 4
- 4
k8s/build-java.sh View File

@@ -6,13 +6,13 @@ baseDir="/home/somuns/ci4s"
#判断$1是否为all,如果是,则编译所有模块,否则只编译management-platform模块
if [ "$1" == "all" ]; then
buildDir=$baseDir
elif [ "$1" == "manage"]; then
elif [ "$1" == "manage" ]; then
buildDir="$baseDir/ruoyi-modules/management-platform"
elif [ "$1" == "auth"]; then
elif [ "$1" == "auth" ]; then
buildDir="$baseDir/ruoyi-auth"
elif [ "$1" == "gateway"]; then
elif [ "$1" == "gateway" ]; then
buildDir="$baseDir/ruoyi-gateway"
elif [ "$1" == "system"]; then
elif [ "$1" == "system" ]; then
buildDir="$baseDir/ruoyi-modules/ruoyi-system"
fi



Loading…
Cancel
Save