Fix typo in the setup script. This fixes repository setups.

This commit is contained in:
Relintai 2020-06-10 12:42:04 +02:00
parent d27e3e0d03
commit f76867cf16

View File

@ -167,7 +167,7 @@ def copytree(src, dst):
if os.path.isdir(dp):
shutil.rmtree(dp, onerror=onerror)
shutil.copytree(sp, dp)
shutil.copytree(sp, dp)
else:
if not os.path.isdir(dst):
os.makedirs(dst)