Closed NiklasRosenstein closed 6 years ago
This same error can prevent a build from finishing because it is updated only after shutil.rmtree(build_path)
is called.
To do list
rmtree()
calls should try to remove the write-protection flag when removing fails
Git write-protects the object files on Windows (for whatever reason ..) which prevents removing the
.git
directory recursively withshutil.rmtree()
. On the command-line, you'd have to userm -rf
to delete the directory.