diff options
author | David Pursehouse <dpursehouse@collab.net> | 2016-08-14 18:02:32 +0900 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2016-08-15 09:51:48 +0900 |
commit | 438eade413b44d3713f020e672ec74a8597efbfe (patch) | |
tree | 91cf69b50b2bb65a7734fec0fb22ac13a09f32d5 /subcmds/init.py | |
parent | 69297c1b771bbbd05b63e965a524de6860d15d8c (diff) | |
download | git-repo-438eade413b44d3713f020e672ec74a8597efbfe.tar.gz |
init: Respect --quiet option when synching manifest repository
Change-Id: Ib58b7dd971670e0888e6428333050700e776b0de
Diffstat (limited to 'subcmds/init.py')
-rw-r--r-- | subcmds/init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/init.py b/subcmds/init.py index b8e3de5a..77153eda 100644 --- a/subcmds/init.py +++ b/subcmds/init.py | |||
@@ -222,7 +222,7 @@ to update the working directory files. | |||
222 | 'in another location.', file=sys.stderr) | 222 | 'in another location.', file=sys.stderr) |
223 | sys.exit(1) | 223 | sys.exit(1) |
224 | 224 | ||
225 | if not m.Sync_NetworkHalf(is_new=is_new): | 225 | if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet): |
226 | r = m.GetRemote(m.remote.name) | 226 | r = m.GetRemote(m.remote.name) |
227 | print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr) | 227 | print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr) |
228 | 228 | ||