Skip to content

Commit

Permalink
fixed build from zero
Browse files Browse the repository at this point in the history
  • Loading branch information
cansik committed Dec 13, 2023
1 parent 307af3a commit 4762e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def build_extension(self, ext: XcodeExtension):
# copy resulting framework into output folder
os.makedirs(ext.output_path, exist_ok=True)
result_name = ext.output_path.joinpath(ext.output_framework_path.name)
shutil.rmtree(result_name)
shutil.rmtree(result_name, ignore_errors=True)
shutil.copytree(str(ext.output_framework_path), result_name)


Expand Down

0 comments on commit 4762e90

Please sign in to comment.