From b613519a52115adc1f5222c4799a66a637a12b76 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 4 Mar 2015 13:43:51 +0100 Subject: [PATCH] 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. --- python/servo/command_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(' ')