Don't handle BaseException in build scripts

This commit is contained in:
Marcel Admiraal 2020-12-12 10:10:23 +00:00
parent 1cd0d711c5
commit e21adf2bc6
6 changed files with 7 additions and 7 deletions

View file

@ -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")