Refactor and optimize build process

This commit is contained in:
Ettore Di Giacinto
2020-11-10 18:14:18 +01:00
parent 36c58307e2
commit 14c1d6ef24
2 changed files with 146 additions and 110 deletions

View File

@@ -95,7 +95,7 @@ func (*SimpleDocker) ImageExists(imagename string) bool {
cmd := exec.Command("docker", buildarg...)
out, err := cmd.CombinedOutput()
if err != nil {
Warning("Image not present")
Debug("Image not present")
Debug(string(out))
return false
}