Recurse submodules

This commit is contained in:
Thomas Forgione 2019-05-21 17:27:52 +02:00
父節點 d8e6a6cee9
當前提交 41993b65a9
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 203DAEA747F48F41
共有 1 個檔案被更改,包括 6 行新增1 行删除

查看文件

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