remove output

This commit is contained in:
2021-10-31 23:58:08 +01:00
parent 90914d2078
commit 59035da46a

View File

@@ -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
}