mirror of
https://github.com/servo/servo.git
synced 2025-06-21 07:38:59 +01:00
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.
This commit is contained in:
parent
9d58c086e7
commit
b613519a52
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ class CommandBase(object):
|
||||||
if self.context.bootstrapped:
|
if self.context.bootstrapped:
|
||||||
return
|
return
|
||||||
|
|
||||||
subprocess.check_call(["git", "submodule", "sync"])
|
subprocess.check_call(["git", "submodule", "--quiet", "sync", "--recursive"])
|
||||||
submodules = subprocess.check_output(["git", "submodule", "status"])
|
submodules = subprocess.check_output(["git", "submodule", "status"])
|
||||||
for line in submodules.split('\n'):
|
for line in submodules.split('\n'):
|
||||||
components = line.strip().split(' ')
|
components = line.strip().split(' ')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue