From 8d900c77cfa0654baab300171d50d4f6bfc2f354 Mon Sep 17 00:00:00 2001 From: Brian Daniels Date: Fri, 1 Feb 2019 17:02:46 -0600 Subject: [PATCH] Improve error message for exports for OS2-only targets --- tools/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/project.py b/tools/project.py index 38ed395a42d..02cd7d16217 100644 --- a/tools/project.py +++ b/tools/project.py @@ -380,8 +380,8 @@ def main(): ignore=options.ignore ) except NotSupportedException as exc: - args_error(parser, "%s not supported by %s" % (mcu, ide)) print("[Not Supported] %s" % str(exc)) + exit(1) exit(0) if __name__ == "__main__":