This commit is contained in:
Kovid Goyal 2019-01-21 08:23:58 +05:30
commit 09345a964f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -259,7 +259,7 @@ class Install(Develop):
if os.path.exists(dest): if os.path.exists(dest):
shutil.rmtree(dest) shutil.rmtree(dest)
self.info('Installing resources to', dest) self.info('Installing resources to', dest)
shutil.copytree(self.RESOURCES, dest) shutil.copytree(self.RESOURCES, dest, symlinks=True)
self.manifest.append(dest) self.manifest.append(dest)
def success(self): def success(self):