Recurse submodules

这个提交包含在:
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();