From 59035da46a1eafcfc9be2a97bf5b999d93446101 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Sun, 31 Oct 2021 23:58:08 +0100 Subject: [PATCH] remove output --- internal/utils.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 }