Remove a fixed warning.

This commit is contained in:
Péter Szilágyi 2014-12-17 16:45:49 +02:00
parent 358a56a2e7
commit 0442d94d4f

1
xgo.go
View File

@ -80,7 +80,6 @@ func checkDockerImage(image string) (bool, error) {
// Pulls an image from the docker registry.
func pullDockerImage(image string) error {
fmt.Printf("Pulling %s from docker registry...\n", image)
fmt.Printf("Note, this may take some time, but due to a docker bug, progress cannot be displayed.\n")
return run(exec.Command("docker", "pull", image))
}