From 22ba003f62a321c3b8405a03d6c9ee04dc0a62a6 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. Signed-off-by: Christopher Larson Signed-off-by: Ross Burton --- scripts/recipetool | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 1.2.3-korg