Skip to content

Commit

Permalink
fix: add --recurse-submodules to checkout module (#439)
Browse files Browse the repository at this point in the history
Co-authored-by: Bartosz Sokorski <b.sokorski@gmail.com>
  • Loading branch information
evanrittenhouse and Secrus committed Aug 23, 2022
1 parent c9348e8 commit 4456c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/core/vcs/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def checkout(self, rev: str, folder: Path | None = None) -> str:

self._check_parameter(rev)

args += ["checkout", rev]
args += ["checkout", "--recurse-submodules", rev]

return self.run(*args)

Expand Down

0 comments on commit 4456c52

Please sign in to comment.