clean: remove debug msg
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
parent
f0b9ad3a57
commit
c45e05f668
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue