Skip to content

Commit

Permalink
Fix symlink param
Browse files Browse the repository at this point in the history
  • Loading branch information
dyastremsky committed Aug 15, 2023
1 parent c8a7416 commit 6ce08ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/library/build_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def touch(path):


def cpdir(src, dest):
shutil.copytree(src, dest, preserve_symlinks=1)
shutil.copytree(src, dest, symlinks=True)


def sed(pattern, replace, source, dest=None):
Expand Down

0 comments on commit 6ce08ba

Please sign in to comment.