[postcfg] fix copy_tree()

This commit is contained in:
Philip Müller 2021-08-09 09:06:58 +00:00
parent b1d999234e
commit 63c1e3e12f

View File

@ -56,7 +56,7 @@ class ConfigController:
def copy_folder(self, source, target):
if exists("/" + source):
copy_tree("/" + source, join(self.root, target), preserve_symlinks)
copy_tree("/" + source, join(self.root, target), preserve_symlinks=1)
def remove_pkg(self, pkg, path):
if exists(join(self.root, path)):