diff --git a/internal/utils.go b/internal/utils.go index 52172c8..1bc2b36 100644 --- a/internal/utils.go +++ b/internal/utils.go @@ -79,7 +79,6 @@ func CopyFile(from, to string) error { } func CheckIfVolumeExists(volume string) bool { - out, err := ExecuteCommand(ExecuteOptions{Command: "docker"}, "volume", "inspect", volume) - fmt.Println(out) + _, err := ExecuteCommand(ExecuteOptions{Command: "docker"}, "volume", "inspect", volume) return err == nil }