mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
bitbake: Fix process.py to accept None as the log option
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -92,7 +92,7 @@ def run(cmd, input=None, **options):
|
||||
options["shell"] = True
|
||||
|
||||
log = options.get('log')
|
||||
if log:
|
||||
if 'log' in options:
|
||||
del options['log']
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user