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/android.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/android.py')
-rw-r--r-- | tools/android.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/android.py b/tools/android.py index 4735345..0e68855 100644 --- a/tools/android.py +++ b/tools/android.py @@ -29,7 +29,7 @@ def generate(env): if env["arch"] not in ("arm64", "x86_64", "arm32", "x86_32"): print("Only arm64, x86_64, arm32, and x86_32 are supported on Android. Exiting.") - Exit() + env.Exit(1) if sys.platform == "win32" or sys.platform == "msys": my_spawn.configure(env) |