mirror of
https://xff.cz/git/u-boot/
synced 2025-09-23 11:32:12 +02:00
patman: Continue on if warnings are found outside a commit
While we cannot know which commit the warning relates to, this should not be fatal. Print the warning and carry on. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -133,8 +133,8 @@ class PatchStream:
|
|||||||
ValueError: Warning is generated with no commit associated
|
ValueError: Warning is generated with no commit associated
|
||||||
"""
|
"""
|
||||||
if not self.commit:
|
if not self.commit:
|
||||||
raise ValueError('Warning outside commit: %s' % warn)
|
print('Warning outside commit: %s' % warn)
|
||||||
if warn not in self.commit.warn:
|
elif warn not in self.commit.warn:
|
||||||
self.commit.warn.append(warn)
|
self.commit.warn.append(warn)
|
||||||
|
|
||||||
def _add_to_series(self, line, name, value):
|
def _add_to_series(self, line, name, value):
|
||||||
|
Reference in New Issue
Block a user