From efebff4ce88ab1c974aa91ac175f121ba07143a9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Tue, 29 May 2012 21:11:44 -0400 Subject: [PATCH] inverse test --- bin/steps/django/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/django/init b/bin/steps/django/init index ec6aaa76..63c51855 100755 --- a/bin/steps/django/init +++ b/bin/steps/django/init @@ -4,7 +4,7 @@ SETTINGS_FILE=$(find . -maxdepth 3 -type f -name 'settings.py' | head -1) PROJECT=$(dirname $SETTINGS_FILE) # Disable injection for new applications. -if [ ! -f .heroku/injection_disabled ]; then +if [ -f .heroku/injection_disabled ]; then DISABLE_INJECTION=1 fi -- GitLab