From f76867cf16cd61edbb0a7128658a6147f8ac7351 Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 10 Jun 2020 12:42:04 +0200 Subject: [PATCH] Fix typo in the setup script. This fixes repository setups. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 70861b1e..fb691779 100644 --- a/SConstruct +++ b/SConstruct @@ -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)