| |
@@ -2033,9 +2033,7 @@
|
| |
os.path.join(outputdir, maven_info['artifact_id'] + '-' +
|
| |
maven_info['version'] + '-patches.zip'))
|
| |
|
| |
- logs = ['checkout.log']
|
| |
- if self.opts.get('patches'):
|
| |
- logs.append('patches.log')
|
| |
+ logs = []
|
| |
output_files = {}
|
| |
|
| |
for path, dirs, files in os.walk(outputdir):
|
| |
@@ -2058,9 +2056,14 @@
|
| |
self.uploadFile(os.path.join(outputdir, relpath, filename),
|
| |
relPath=relpath)
|
| |
|
| |
- # Also include the logs already upload by BuildRoot
|
| |
+ # Also include the logs already uploaded by BuildRoot
|
| |
logs.extend(buildroot.logs)
|
| |
|
| |
+ # Also include the checkout logs (uploaded during checkout)
|
| |
+ logs.append('checkout.log')
|
| |
+ if self.opts.get('patches'):
|
| |
+ logs.append('patches.log')
|
| |
+
|
| |
buildroot.expire()
|
| |
|
| |
return {'maven_info': maven_info,
|
| |
Related: https://pagure.io/koji/issue/4273
I'm not completely sure that it is ok, but I believe that this is superceded by update in https://pagure.io/koji/c/c51ae5d6b34d67bc903a818241720e0b15c95de4
please doublecheck that I'm not breaking it. (real task in brew 66091839 - see that checkout.log is already there)