parent
9694f07aef
commit
aa370c20a2
1 changed files with 4 additions and 1 deletions
|
|
@ -472,7 +472,10 @@ class BuildRoot(object):
|
|||
mocklog = 'mock_output.log'
|
||||
pid = os.fork()
|
||||
if pid:
|
||||
log_patterns = ['%s/*.log' % self.resultdir()]
|
||||
log_patterns = [
|
||||
'%s/*.log' % self.resultdir(),
|
||||
'%s/var/log/dnf*.log' % self.rootdir(),
|
||||
]
|
||||
if workdir:
|
||||
log_patterns.append('%s/%s' % (workdir, mocklog))
|
||||
logs = BuildRootLogs(self, log_patterns, with_ts=self.options.log_timestamps)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue