Skip to content

Commit

Permalink
fix(worker): clone squeeze (#3168)
Browse files Browse the repository at this point in the history
Signed-off-by: Yvonnick Esnault <[email protected]>
  • Loading branch information
yesnault authored and fsamin committed Aug 8, 2018
1 parent e529b85 commit e355468
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion engine/worker/builtin_checkout_application.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ func runCheckoutApplication(w *currentWorker) BuiltInAction {
var opts = &git.CloneOpts{
Recursive: true,
NoStrictHostKeyChecking: true,
Depth: 50,
}
if branch != nil {
opts.Branch = branch.Value
Expand Down
1 change: 0 additions & 1 deletion engine/worker/builtin_gitclone.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ func runGitClone(w *currentWorker) BuiltInAction {
var opts = &git.CloneOpts{
Recursive: true,
NoStrictHostKeyChecking: true,
Depth: 50,
}
if branch != nil {
opts.Branch = branch.Value
Expand Down

0 comments on commit e355468

Please sign in to comment.