mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Fix issue with symlinks during recursive copy during install
This commit is contained in:
parent
731c2535b7
commit
d704b3961e
2
setup.py
2
setup.py
@ -61,7 +61,7 @@ class CustomInstallData(install_data):
|
||||
for target, source in DIRECTORIES_TO_COPY:
|
||||
if not os.path.exists(target):
|
||||
log.info("recursive copy '%s' to '%s'", source, target)
|
||||
shutil.copytree(source, target)
|
||||
shutil.copytree(source, target, symlinks=True)
|
||||
|
||||
|
||||
find_packages = setuptools.PEP420PackageFinder.find
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user