aboutsummaryrefslogtreecommitdiff
path: root/scripts/rhodecode-setup
diff options
context:
space:
mode:
authorMilo Casagrande <milo@ubuntu.com>2013-01-23 16:34:38 +0100
committerMilo Casagrande <milo@ubuntu.com>2013-01-23 16:34:38 +0100
commita2358490c193cf9f345140c0dd8ba8e468a9e599 (patch)
tree520781b9a0c33584a276dbae37631ccc411d21e8 /scripts/rhodecode-setup
parentdcf8e9e81b00f98de95c1f6b5f4c0c8d26eec284 (diff)
Fixed problems in script.
Diffstat (limited to 'scripts/rhodecode-setup')
-rw-r--r--scripts/rhodecode-setup4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rhodecode-setup b/scripts/rhodecode-setup
index b65fca4..ed3039e 100644
--- a/scripts/rhodecode-setup
+++ b/scripts/rhodecode-setup
@@ -429,7 +429,7 @@ def install_rhodecode(work_dir, user=None):
cmd_args = ["python", "setup.py", "install"]
if user:
- cmd_args = ["-u", user, "-H", "-E"] + cmd_args
+ cmd_args = ["-u", user, "-H"] + cmd_args
cmd_args.append("--user")
execute_command(cmd_args, work_dir=work_dir)
@@ -457,7 +457,7 @@ def setup_rhodecode(rhodecode_dir, config_file, git_repos, admin_usr,
repos = "--repos=%s" % os.path.abspath(git_repos)
if user:
- cmd_args = ["-u", user, "-H", "-E"]
+ cmd_args = ["-u", user, "-H"]
cmd_args += ["paster", "setup-rhodecode", config_file]
cmd_args.append(usr_arg)