diff options
author | Dan Fox <iamdanfox@gmail.com> | 2015-03-05 17:34:18 +0000 |
---|---|---|
committer | Dan Fox <iamdanfox@gmail.com> | 2015-03-05 17:34:18 +0000 |
commit | 19686acdec7a8f6e36fe999a2896ed44718f42d6 (patch) | |
tree | adc8d1b7f13790bee5c34239cf679e5062268e1f /python/servo | |
parent | 3441b2c329176fbb3e63b564c6eaef40862be38a (diff) | |
parent | caf5663e0981f36a621dde1dd51be2bd0a15dd24 (diff) | |
download | servo-19686acdec7a8f6e36fe999a2896ed44718f42d6.tar.gz servo-19686acdec7a8f6e36fe999a2896ed44718f42d6.zip |
Merge in servo/master
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/command_base.py | 2 |
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(' ') |