From e28c4ba7bf7c35682c8fe98657b41e3041c4794b Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Mon, 29 Jun 2015 08:20:19 -0700 Subject: recipetool: catch BBHandledException from parsing This ensures that we don't see a traceback on parsing failures. (From OE-Core rev: 22ba003f62a321c3b8405a03d6c9ee04dc0a62a6) Signed-off-by: Christopher Larson Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- scripts/recipetool | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts/recipetool') diff --git a/scripts/recipetool b/scripts/recipetool index c68bef4c96..3063cf7c43 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 -- cgit v1.2.3-54-g00ecf