2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-19 04:02:14 +00:00

Fix error ignore flag value for rmtree cleanup of temp test dirs.

This commit is contained in:
Rene Rivera
2024-06-09 20:56:51 -05:00
parent f608cb41ce
commit dfd11bb5c6

View File

@@ -300,7 +300,7 @@ class TestCmd:
list.reverse()
for dir in list:
self.writable(dir, 1)
shutil.rmtree(dir, ignore_errors=1)
shutil.rmtree(dir, ignore_errors=True)
self._dirlist = []
self.workdir = None