Skip to content

Commit 1c483e8

Browse files
authored
Merge pull request #9589 from bridadan/fix_export_exception_msg
Improve error message for exports for OS2-only targets
2 parents dcba5ff + 8d900c7 commit 1c483e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,8 @@ def main():
380380
ignore=options.ignore
381381
)
382382
except NotSupportedException as exc:
383-
args_error(parser, "%s not supported by %s" % (mcu, ide))
384383
print("[Not Supported] %s" % str(exc))
384+
exit(1)
385385
exit(0)
386386

387387
if __name__ == "__main__":

0 commit comments

Comments
 (0)