aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'master/setup-master.py')
-rwxr-xr-xmaster/setup-master.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/master/setup-master.py b/master/setup-master.py
index 4a6b67f..86a718e 100755
--- a/master/setup-master.py
+++ b/master/setup-master.py
@@ -50,14 +50,14 @@ def install_master():
management.call_command('startproject', DESTDIR)
if SYMLINKS:
- os.symlink(cwd+'/autotua', DESTDIR+'/master')
+ os.symlink(cwd+'/master', DESTDIR+'/master')
for file in ['autotua_settings.py', 'urls.py']:
dest_file = DESTDIR+'/'+file
if os.path.isfile(dest_file):
os.remove(dest_file)
os.symlink(cwd+'/custom/'+file, dest_file)
else:
- shutil.copytree(cwd+'/autotua', DESTDIR+'/master')
+ shutil.copytree(cwd+'/master', DESTDIR+'/master')
for file in ['autotua_settings.py', 'urls.py']:
shutil.copy(cwd+'/custom/'+file, DESTDIR)
settings = open(DESTDIR+'/settings.py', 'a')