Update git submodules

This commit is contained in:
Roey Darwish Dror
2018-07-04 14:19:51 +03:00
parent 758d835b7e
commit f8a95528de

View File

@@ -55,7 +55,17 @@ impl Git {
.arg("pull")
.arg("--rebase")
.arg("--autostash")
.current_dir(path)
.current_dir(&path)
.spawn()?
.wait()?
.check()?;
Command::new(&git)
.arg("submodule")
.arg("update")
.arg("--init")
.arg("--recursive")
.current_dir(&path)
.spawn()?
.wait()?
.check()?;