Skip to content

Commit

Permalink
Oh, cloning too
Browse files Browse the repository at this point in the history
  • Loading branch information
sdboyer committed Dec 4, 2016
1 parent 8e5ea52 commit 3c78e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (s GitRepo) Vcs() Type {

// Get is used to perform an initial clone of a repository.
func (s *GitRepo) Get() error {
out, err := s.run("git", "clone", s.Remote(), s.LocalPath())
out, err := s.run("git", "clone", "--recursive", s.Remote(), s.LocalPath())

// There are some windows cases where Git cannot create the parent directory,
// if it does not already exist, to the location it's trying to create the
Expand Down

0 comments on commit 3c78e16

Please sign in to comment.