Commit ede7de46 authored by wentao.suo's avatar wentao.suo

fff

parent 47a753e1
...@@ -3,7 +3,7 @@ package org.qg.docker_new; ...@@ -3,7 +3,7 @@ package org.qg.docker_new;
import org.qg.docker_new.Utils; import org.qg.docker_new.Utils;
import groovy.json.JsonSlurperClassic; import groovy.json.JsonSlurperClassic;
def _utils = new org.qg.docker_new.Utils(); def _utils() { return new org.qg.docker_new.Utils();}
def harborGroup = "library" def harborGroup = "library"
...@@ -325,13 +325,13 @@ def getDocketPackageImage(buildType){ ...@@ -325,13 +325,13 @@ def getDocketPackageImage(buildType){
break break
default: default:
echo "" echo ""
_utils.beautyEcho("未知的buildType: ${buildType}", "info") _utils() .beautyEcho("未知的buildType: ${buildType}", "info")
packageImageInfo["image"] = "" packageImageInfo["image"] = ""
packageImageInfo["args"] = "" packageImageInfo["args"] = ""
break break
} }
_utils.beautyEcho("image :"+packageImageInfo["image"], "info") _utils().beautyEcho("image :"+packageImageInfo["image"], "info")
_utils.beautyEcho("args"+packageImageInfo["args"], "info") _utils().beautyEcho("args"+packageImageInfo["args"], "info")
return packageImageInfo return packageImageInfo
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment