From d4cc142f64a5b19527274a63627862b6651bffeb Mon Sep 17 00:00:00 2001 From: kaiyou Date: Sun, 22 Apr 2018 16:12:13 +0200 Subject: [PATCH] Rename the config dir to setup --- setup/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/setup.py b/setup/setup.py index 6aeca5d3..e08c0092 100644 --- a/setup/setup.py +++ b/setup/setup.py @@ -21,7 +21,7 @@ def main(upstream, dest, dev=True): if not VERSION_BRANCH.match(name): continue branch.checkout() - config_path = os.path.join(clone_path, "config") + config_path = os.path.join(clone_path, "setup") if os.path.exists(config_path): shutil.copytree(config_path, os.path.join(dest, name)) print("Imported branch {}".format(name))