When try to detect upstream version of recipes if one fails don't abort all the execution.
Signed-off-by: Aníbal Limón <[email protected]> --- upgradehelper.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index 8d6c6f6..d4a5360 100755 --- a/upgradehelper.py +++ b/upgradehelper.py @@ -285,10 +285,7 @@ class Updater(object): C(" \"distrodata.bbclass\" not inherited. Consider adding " "the following to your local.conf:\n\n" "INHERIT =+ \"distrodata\"\n") - else: - C(line) - - exit(1) + exit(1) def _parse_checkpkg_file(self, file_path): import csv -- 1.9.1 -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
