1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Don't handle BaseException in build scripts

This commit is contained in:
Marcel Admiraal
2020-12-12 10:05:42 +00:00
parent d62dcb6b01
commit 8ef5e3201c
7 changed files with 8 additions and 10 deletions

View File

@@ -843,7 +843,7 @@ def show_progress(env):
try:
with open(node_count_fname) as f:
node_count_max = int(f.readline())
except:
except Exception:
pass
cache_directory = os.environ.get("SCONS_CACHE")