Skip to content

Commit

Permalink
fix(build): Allow existing older to be copied over
Browse files Browse the repository at this point in the history
Signed-off-by: Investigamer <[email protected]>
  • Loading branch information
Investigamer committed Feb 1, 2024
1 parent 4091eb2 commit d36e6e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def _ignore(path: str, names: list[str]) -> set[str]:
return set(ignored)

# Copy the directory
copytree(src, dst, ignore=_ignore)
copytree(src, dst, ignore=_ignore, dirs_exist_ok=True)


def copy_app_files(config: DistConfig) -> None:
Expand Down

0 comments on commit d36e6e3

Please sign in to comment.