Recurse submodules

This commit is contained in:
Thomas Forgione 2019-05-21 17:27:52 +02:00
parent d8e6a6cee9
commit 41993b65a9
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 6 additions and 1 deletions

View File

@ -119,7 +119,12 @@ fn clone_dirty<P: AsRef<Path>>(url: &str, place: P) -> Result<()> {
} }
let command = Command::new("git") let command = Command::new("git")
.args(&["clone", &url, &place.display().to_string()]) .args(&[
"clone",
"--recurse-submodules",
&url,
&place.display().to_string()
])
.stderr(Stdio::null()) .stderr(Stdio::null())
.status(); .status();