remove output

This commit is contained in:
cupcakearmy 2021-10-31 23:58:08 +01:00
parent 90914d2078
commit 59035da46a
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 1 additions and 2 deletions

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
}