mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +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
|
@ -885,7 +885,7 @@ def show_progress(env):
|
|||
try:
|
||||
with open(node_count_data["fname"]) as f:
|
||||
node_count_data["max"] = int(f.readline())
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
cache_directory = os.environ.get("SCONS_CACHE")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue