mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
repo: improve duplicate default check
If one default is totally empty, we don't need to fail. BUG=b:187795796 TEST=unit tests Change-Id: Id226a7a7cd183dbdee58f4681b84885cc9211375 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/309102 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Jack Neus <jackneus@google.com>
This commit is contained in:
parent
d58d0dd3bf
commit
b8c84483a5
@ -791,9 +791,10 @@ https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md
|
||||
for node in itertools.chain(*node_list):
|
||||
if node.nodeName == 'default':
|
||||
new_default = self._ParseDefault(node)
|
||||
emptyDefault = not node.hasAttributes() and not node.hasChildNodes()
|
||||
if self._default is None:
|
||||
self._default = new_default
|
||||
elif new_default != self._default:
|
||||
elif not emptyDefault and new_default != self._default:
|
||||
raise ManifestParseError('duplicate default in %s' %
|
||||
(self.manifestFile))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user