Skip to content

Commit 4456c52

Browse files
fix: add --recurse-submodules to checkout module (python-poetry#439)
Co-authored-by: Bartosz Sokorski <[email protected]>
1 parent c9348e8 commit 4456c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/poetry/core/vcs/git.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def checkout(self, rev: str, folder: Path | None = None) -> str:
292292

293293
self._check_parameter(rev)
294294

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

297297
return self.run(*args)
298298

0 commit comments

Comments
 (0)