mirror of
https://github.com/godotengine/godot.git
synced 2025-10-27 19:54:27 +00:00
Don't handle BaseException in build scripts
This commit is contained in:
parent
1cd0d711c5
commit
e21adf2bc6
6 changed files with 7 additions and 7 deletions
|
|
@ -94,7 +94,7 @@ def build_res_file(target, source, env):
|
|||
out = subprocess.Popen(cmd, shell=True, stderr=subprocess.PIPE).communicate()
|
||||
if len(out[1]):
|
||||
return 1
|
||||
except:
|
||||
except Exception:
|
||||
return 1
|
||||
return 0
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue