[OE-core] [PATCH 1/3] recipetool: catch BBHandledException from parsing
Christopher Larson
kergoth at gmail.com
Mon Jun 29 20:50:05 UTC 2015
This ensures that we don't see a traceback on parsing failures.
Signed-off-by: Christopher Larson <kergoth at gmail.com>
---
scripts/recipetool | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/scripts/recipetool b/scripts/recipetool
index c68bef4..3063cf7 100755
--- a/scripts/recipetool
+++ b/scripts/recipetool
@@ -82,9 +82,11 @@ def main():
scriptutils.logger_setup_color(logger, args.color)
- tinfoil_init(getattr(args, 'parserecipes', False))
-
- ret = args.func(args)
+ try:
+ tinfoil_init(getattr(args, 'parserecipes', False))
+ ret = args.func(args)
+ except bb.BBHandledException:
+ ret = 1
return ret
--
2.2.1
More information about the Openembedded-core
mailing list