clarify error message for noarch rpmdiff mismatches
see https://fedorahosted.org/koji/ticket/325
This commit is contained in:
parent
8168da12cd
commit
de92c542dc
1 changed files with 3 additions and 2 deletions
|
|
@ -7752,8 +7752,9 @@ def rpmdiff(basepath, rpmlist):
|
|||
status = proc.wait()
|
||||
if os.WIFSIGNALED(status) or \
|
||||
(os.WEXITSTATUS(status) != 0):
|
||||
raise koji.BuildError, 'mismatch when analyzing %s, rpmdiff output was:\n%s' % \
|
||||
(os.path.basename(first_rpm), output)
|
||||
raise koji.BuildError(
|
||||
'The following noarch package built differently on different architectures: %s\n'
|
||||
'rpmdiff output was:\n%s' % (os.path.basename(first_rpm), output))
|
||||
|
||||
def importImageInternal(task_id, build_id, imgdata):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue