Recurse submodules

This commit is contained in:
Thomas Forgione 2019-05-21 17:27:52 +02:00
parent d8e6a6cee9
commit 41993b65a9
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 203DAEA747F48F41
1 ha cambiato i file con 6 aggiunte e 1 eliminazioni

Vedi File

@ -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();