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:
commit
a6afd70418
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue