diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-03-11 13:05:37 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-03-11 13:20:09 -0500 |
commit | 5a6e3cbcb03c3f756344a38259f3774ddaf1a63d (patch) | |
tree | a435d3f986a1ca0e179d311ac4a5a11e2a67ea02 /SConstruct | |
parent | f040a351c2f27c6b86c40c71a28babf99dd0b9bd (diff) | |
download | redot-engine-5a6e3cbcb03c3f756344a38259f3774ddaf1a63d.tar.gz |
SCons: Remove `run_in_subprocess` dependency
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index b6de04a910..c11fd50497 100644 --- a/SConstruct +++ b/SConstruct @@ -1038,3 +1038,13 @@ def print_elapsed_time(): atexit.register(print_elapsed_time) + + +def purge_flaky_files(): + for build_failure in GetBuildFailures(): + path = build_failure.node.abspath + if os.path.isfile(path): + os.remove(path) + + +atexit.register(purge_flaky_files) |