From 947908e028d7b272e22ea3f8ce8eb213bdbb71c4 Mon Sep 17 00:00:00 2001 From: Xavier Antoviaque Date: Thu, 6 Jun 2013 18:15:33 -0300 Subject: [PATCH] Install: Fix install script freeze (syncdb superuser account creation) Since the output is passed through tee, when the django admin asks the user if he would like to create a super user account, it blocks the install, without even showing the question. Disabled interactivity for syncdb. --- scripts/create-dev-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-dev-env.sh b/scripts/create-dev-env.sh index 4e943d9a7b..31b369ed14 100755 --- a/scripts/create-dev-env.sh +++ b/scripts/create-dev-env.sh @@ -543,7 +543,7 @@ mkdir -p "$BASE/log" mkdir -p "$BASE/db" mkdir -p "$BASE/data" -rake django-admin[syncdb] +rake django-admin[syncdb,lms,dev,--noinput] rake django-admin[migrate] rake cms:update_templates # Configure Git