1
0
Fork 0

Recurse submodules

Dieser Commit ist enthalten in:
Thomas Forgione 2019-05-21 17:27:52 +02:00
Ursprung d8e6a6cee9
Commit 41993b65a9
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 203DAEA747F48F41
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen

Datei anzeigen

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