Skip to content

Commit

Permalink
Merge pull request #2427 from matemax/submodule_clone
Browse files Browse the repository at this point in the history
recurse clone submodules
  • Loading branch information
finswimmer authored Jun 10, 2020
2 parents f812822 + d5414b8 commit d037b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/vcs/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def config(self): # type: () -> GitConfig
return self._config

def clone(self, repository, dest): # type: (...) -> str
return self.run("clone", repository, str(dest))
return self.run("clone", "--recurse-submodules", repository, str(dest))

def checkout(self, rev, folder=None): # type: (...) -> str
args = []
Expand Down

0 comments on commit d037b59

Please sign in to comment.