build/python/build/project.py: add "lazy" parameter to make_build_path()

This commit is contained in:
Max Kellermann 2021-05-04 14:57:46 +02:00
parent 47341107ea
commit d5d3982d3c
1 changed files with 3 additions and 1 deletions

View File

@ -72,8 +72,10 @@ class Project:
return path
def make_build_path(self, toolchain):
def make_build_path(self, toolchain, lazy=False):
path = os.path.join(toolchain.build_path, self.base)
if lazy and os.path.isdir(path):
return path
try:
shutil.rmtree(path)
except FileNotFoundError: