mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 04:03:03 +01:00
bitbake-dev: Fix python function task execution failure handling
This commit is contained in:
@@ -204,8 +204,11 @@ def exec_func_python(func, d, runfile, logfile):
|
||||
g['bb'] = bb
|
||||
g['os'] = os
|
||||
g['d'] = d
|
||||
utils.better_exec(comp, g, tmp, bbfile)
|
||||
|
||||
try:
|
||||
utils.better_exec(comp, g, tmp, bbfile)
|
||||
except:
|
||||
bb.msg.error(bb.msg.domain.Build, "Function %s failed" % func)
|
||||
raise FuncFailed("function %s failed" % func, logfile)
|
||||
|
||||
def exec_func_shell(func, d, runfile, logfile, flags):
|
||||
"""Execute a shell BB 'function' Returns true if execution was successful.
|
||||
|
||||
Reference in New Issue
Block a user