From c45e05f668f0077f266bf9e31657e2c344b4ad86 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Sat, 22 Jun 2019 11:45:42 -0300 Subject: [PATCH] clean: remove debug msg Signed-off-by: Carlos Alexandro Becker --- pkg/buildcontext/git.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/buildcontext/git.go b/pkg/buildcontext/git.go index 7d61c6298..1909e8377 100644 --- a/pkg/buildcontext/git.go +++ b/pkg/buildcontext/git.go @@ -17,7 +17,6 @@ limitations under the License. package buildcontext import ( - "fmt" "os" "strings" @@ -40,7 +39,6 @@ func (g *Git) UnpackTarFromBuildContext() (string, error) { if len(parts) > 1 { branch = parts[1] } - fmt.Println("will clone branch", branch) _, err := git.PlainClone(directory, false, &git.CloneOptions{ URL: url, Progress: os.Stdout,