Skip to content

Commit 4444877

Browse files
meparasharemichael
authored andcommitted
Ignore errors on dir del
1 parent 687ecc4 commit 4444877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

handout-files/run-tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def make():
5151
except subprocess.CalledProcessError as ex:
5252
print("Could not compile sources.\n")
5353
print(ex.output.decode("utf-8"))
54-
shutil.rmtree('out')
54+
shutil.rmtree('out', ignore_errors=True)
5555
sys.exit(3)
5656

5757

0 commit comments

Comments
 (0)