mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
sync: Use --force-broken to continue other projects
This adds a new flag -f/--force-broken that will allow the rest of the sync process to continue instead of bailing when a particular project fails to sync. Change-Id: I23680f2ee7927410f7ed930b1d469424c9aa246e Signed-off-by: Andrei Warkentin <andreiw@motorola.com> Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
parent
a0de6e8eab
commit
5df6de075e
@ -70,6 +70,9 @@ The -s/--smart-sync option can be used to sync to a known good
|
||||
build as specified by the manifest-server element in the current
|
||||
manifest.
|
||||
|
||||
The -f/--force-broken option can be used to proceed with syncing
|
||||
other projects if a project sync fails.
|
||||
|
||||
SSH Connections
|
||||
---------------
|
||||
|
||||
@ -101,6 +104,9 @@ later is required to fix a server side protocol bug.
|
||||
"""
|
||||
|
||||
def _Options(self, p, show_smart=True):
|
||||
p.add_option('-f', '--force-broken',
|
||||
dest='force_broken', action='store_true',
|
||||
help="continue sync even if a project fails to sync")
|
||||
p.add_option('-l','--local-only',
|
||||
dest='local_only', action='store_true',
|
||||
help="only update working tree, don't fetch")
|
||||
@ -132,6 +138,9 @@ later is required to fix a server side protocol bug.
|
||||
def _FetchHelper(self, opt, project, lock, fetched, pm, sem):
|
||||
if not project.Sync_NetworkHalf(quiet=opt.quiet):
|
||||
print >>sys.stderr, 'error: Cannot fetch %s' % project.name
|
||||
if opt.force_broken:
|
||||
print >>sys.stderr, 'warn: --force-broken, continuing to sync'
|
||||
else:
|
||||
sem.release()
|
||||
sys.exit(1)
|
||||
|
||||
@ -152,6 +161,9 @@ later is required to fix a server side protocol bug.
|
||||
fetched.add(project.gitdir)
|
||||
else:
|
||||
print >>sys.stderr, 'error: Cannot fetch %s' % project.name
|
||||
if opt.force_broken:
|
||||
print >>sys.stderr, 'warn: --force-broken, continuing to sync'
|
||||
else:
|
||||
sys.exit(1)
|
||||
else:
|
||||
threads = set()
|
||||
|
Loading…
Reference in New Issue
Block a user