You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Don't handle BaseException in JavaScript build script
This commit is contained in:
@@ -59,7 +59,7 @@ def get_flags():
|
|||||||
def configure(env):
|
def configure(env):
|
||||||
try:
|
try:
|
||||||
env["initial_memory"] = int(env["initial_memory"])
|
env["initial_memory"] = int(env["initial_memory"])
|
||||||
except:
|
except Exception:
|
||||||
print("Initial memory must be a valid integer")
|
print("Initial memory must be a valid integer")
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user