From ae75f0de9e22fe88d9541e858fa5e926beae8322 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Wed, 30 Jan 2019 09:48:26 +0200 Subject: [PATCH] No need to update submodules (fix #115) Git pull should do that. In addition, it breaks the colors in Windows --- src/steps/git.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/steps/git.rs b/src/steps/git.rs index 8c22be52..ab9090c7 100644 --- a/src/steps/git.rs +++ b/src/steps/git.rs @@ -69,12 +69,6 @@ impl Git { .current_dir(&path) .check_run()?; - run_type - .execute(git) - .args(&["submodule", "update", "--init", "--recursive"]) - .current_dir(&path) - .check_run()?; - Ok(()) }() .is_ok();