aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2015-03-04 13:43:51 +0100
committerSimon Sapin <simon.sapin@exyr.org>2015-03-04 13:43:51 +0100
commitb613519a52115adc1f5222c4799a66a637a12b76 (patch)
tree3d0b2f52d8eb1abb311a0ccb9012fa8d2c177a5c /python
parent9d58c086e72a7d2fc8655506d35f30069bbadbbd (diff)
downloadservo-b613519a52115adc1f5222c4799a66a637a12b76.tar.gz
servo-b613519a52115adc1f5222c4799a66a637a12b76.zip
Make submodule sync silent (and recursive).
This eliminates the Synchronizing submodule url for 'support/android-rs-glue' Synchronizing submodule url for 'tests/wpt/web-platform-tests' messages that appeared for every `mach build` command.
Diffstat (limited to 'python')
-rw-r--r--python/servo/command_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 20ee3fb6527..4bcae97c11b 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -202,7 +202,7 @@ class CommandBase(object):
if self.context.bootstrapped:
return
- subprocess.check_call(["git", "submodule", "sync"])
+ subprocess.check_call(["git", "submodule", "--quiet", "sync", "--recursive"])
submodules = subprocess.check_output(["git", "submodule", "status"])
for line in submodules.split('\n'):
components = line.strip().split(' ')