clean: remove debug msg

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2019-06-22 11:45:42 -03:00
parent f0b9ad3a57
commit c45e05f668
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
1 changed files with 0 additions and 2 deletions

View File

@ -17,7 +17,6 @@ limitations under the License.
package buildcontext package buildcontext
import ( import (
"fmt"
"os" "os"
"strings" "strings"
@ -40,7 +39,6 @@ func (g *Git) UnpackTarFromBuildContext() (string, error) {
if len(parts) > 1 { if len(parts) > 1 {
branch = parts[1] branch = parts[1]
} }
fmt.Println("will clone branch", branch)
_, err := git.PlainClone(directory, false, &git.CloneOptions{ _, err := git.PlainClone(directory, false, &git.CloneOptions{
URL: url, URL: url,
Progress: os.Stdout, Progress: os.Stdout,