From a56970499d2b27342fabfb7a93dd00a714403c57 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 86492809f6..550c2eec3e 100644 --- a/tools/project.py +++ b/tools/project.py @@ -371,8 +371,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__":