devutils/update_platform_patches.py: Replace exit() with sys.exit()

exit() should only be used in a REPL, not a script
This commit is contained in:
Eloston
2021-04-25 22:29:36 +00:00
parent 169dd4229f
commit 9dc66d0ecc

View File

@@ -183,4 +183,4 @@ def main():
if __name__ == '__main__':
exit(main())
sys.exit(main())