From 7911c0c14523fddfbf89104e2311e7ebfe20f4d4 Mon Sep 17 00:00:00 2001 From: Prabhjyot Singh Sodhi Date: Sat, 14 Feb 2015 20:09:06 +0530 Subject: [PATCH] Mach bootstrapping will sync modules Fixes #4916 --- python/servo/command_base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 3b151affdd0..0f86edcb541 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -166,6 +166,7 @@ class CommandBase(object): if self.context.bootstrapped: return + subprocess.check_call(["git", "submodule", "sync"]) submodules = subprocess.check_output(["git", "submodule", "status"]) for line in submodules.split('\n'): components = line.strip().split(' ')