From 3523ffdce14b6e27b640b959f405fd972ca8a22e Mon Sep 17 00:00:00 2001 From: Chris Bednarski Date: Wed, 12 Aug 2015 11:36:10 -0700 Subject: [PATCH] Farewell extra line. You were pretty but out of place. --- builder/docker/communicator.go | 1 - 1 file changed, 1 deletion(-) diff --git a/builder/docker/communicator.go b/builder/docker/communicator.go index 38126366c..8af54bdfe 100644 --- a/builder/docker/communicator.go +++ b/builder/docker/communicator.go @@ -198,7 +198,6 @@ func (c *Communicator) UploadDir(dst string, src string, exclude []string) error // path and want to write to an io.Writer, not a file. We use - to make docker // cp to write to stdout, and then copy the stream to our destination io.Writer. func (c *Communicator) Download(src string, dst io.Writer) error { - log.Printf("Downloading file from container: %s:%s", c.ContainerId, src) localCmd := exec.Command("docker", "cp", fmt.Sprintf("%s:%s", c.ContainerId, src), "-")