aedi: do not delete install path when xcode project generation is requested

This commit is contained in:
alexey.lysiuk 2021-04-03 12:10:33 +03:00
parent 197d5c1aaf
commit 30db3a78f6

View file

@ -131,7 +131,7 @@ class Builder(object):
assert state.install_path
if os.path.exists(state.install_path):
if not state.xcode and os.path.exists(state.install_path):
shutil.rmtree(state.install_path)
self._create_prefix_directory()