mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 06:11:29 +03:00
Merge pull request #45540 from madmiraal/fix-handling-baseexception-3.2
[3.2] Don't handle BaseException in JavaScript build script
This commit is contained in:
@@ -59,7 +59,7 @@ def get_flags():
|
||||
def configure(env):
|
||||
try:
|
||||
env["initial_memory"] = int(env["initial_memory"])
|
||||
except:
|
||||
except Exception:
|
||||
print("Initial memory must be a valid integer")
|
||||
sys.exit(255)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user