diff --git a/src/git.rs b/src/git.rs index 1a4c00e..cfde924 100644 --- a/src/git.rs +++ b/src/git.rs @@ -119,7 +119,12 @@ fn clone_dirty>(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();