Recurse submodules
This commit is contained in:
parent
d8e6a6cee9
commit
41993b65a9
|
@ -119,7 +119,12 @@ fn clone_dirty<P: AsRef<Path>>(url: &str, place: P) -> Result<()> {
|
|||
}
|
||||
|
||||
let command = Command::new("git")
|
||||
.args(&["clone", &url, &place.display().to_string()])
|
||||
.args(&[
|
||||
"clone",
|
||||
"--recurse-submodules",
|
||||
&url,
|
||||
&place.display().to_string()
|
||||
])
|
||||
.stderr(Stdio::null())
|
||||
.status();
|
||||
|
||||
|
|
Loading…
Reference in New Issue