diff options
author | David Snopek <dsnopek@gmail.com> | 2023-09-09 09:19:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 09:19:38 -0500 |
commit | 80f98de905b3306461adf8dabdca080bd8637263 (patch) | |
tree | 32b9919893598728df4508d15640534723cbee47 /tools/macos.py | |
parent | 5cdc2fc09924444157136880d9c23bfd0af602f9 (diff) | |
parent | 0e5975dd266234ab45acbd88168e8550ea3e4419 (diff) | |
download | redot-cpp-80f98de905b3306461adf8dabdca080bd8637263.tar.gz |
Merge pull request #1237 from DmitriySalnikov/fix-scons-crashes
[SCons] Fixed crashes in several scripts
Diffstat (limited to 'tools/macos.py')
-rw-r--r-- | tools/macos.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/macos.py b/tools/macos.py index 34a755a..0c75e4a 100644 --- a/tools/macos.py +++ b/tools/macos.py @@ -20,7 +20,7 @@ def exists(env): def generate(env): if env["arch"] not in ("universal", "arm64", "x86_64"): print("Only universal, arm64, and x86_64 are supported on macOS. Exiting.") - Exit() + env.Exit(1) if sys.platform == "darwin": # Use clang on macOS by default |