aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/command_base.py
diff options
context:
space:
mode:
authorPrabhjyot Singh Sodhi <prabhjyotsingh95@gmail.com>2015-02-14 20:09:06 +0530
committerPrabhjyot Singh Sodhi <prabhjyotsingh95@gmail.com>2015-02-19 01:39:27 +0530
commit7911c0c14523fddfbf89104e2311e7ebfe20f4d4 (patch)
tree4c88f92b53cf578e0c39eca6dc34e749ca73c375 /python/servo/command_base.py
parent2e4f343aeae23a0fd3d9c5307778dec9b2e8ea21 (diff)
downloadservo-7911c0c14523fddfbf89104e2311e7ebfe20f4d4.tar.gz
servo-7911c0c14523fddfbf89104e2311e7ebfe20f4d4.zip
Mach bootstrapping will sync modules
Fixes #4916
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r--python/servo/command_base.py1
1 files changed, 1 insertions, 0 deletions
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(' ')