Print inspect output as string

This commit is contained in:
Ettore Di Giacinto
2020-06-06 11:32:47 +02:00
parent 03cc5fcb76
commit 264e1e9652

View File

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