From 133c308796aecd6edd999bd09cc11021bf9033bc Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.com>
Date: Tue, 15 May 2012 14:41:02 -0700
Subject: [PATCH] shuffle a few things around

---
 bin/compile                            | 2 +-
 bin/steps/django/collectstatic         | 0
 bin/steps/django/init                  | 2 ++
 bin/steps/{django => django/injection} | 0
 bin/steps/pylibmc                      | 0
 5 files changed, 3 insertions(+), 1 deletion(-)
 create mode 100755 bin/steps/django/collectstatic
 create mode 100755 bin/steps/django/init
 rename bin/steps/{django => django/injection} (100%)
 mode change 100644 => 100755 bin/steps/pylibmc

diff --git a/bin/compile b/bin/compile
index 66ed77a4..70493f6b 100755
--- a/bin/compile
+++ b/bin/compile
@@ -184,7 +184,7 @@ pip install --use-mirrors -r requirements.txt --src ./.heroku/src | indent
 # See [`bin/steps/django`](django.html).
 
 if [ "$NAME" = "Python/Django" ] && ! [ "$DISABLE_INJECTION" ]; then
-  source $BIN_DIR/steps/django
+  source $BIN_DIR/steps/django/init
 fi
 
 # Make Virtualenv's paths relative for portability.
diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic
new file mode 100755
index 00000000..e69de29b
diff --git a/bin/steps/django/init b/bin/steps/django/init
new file mode 100755
index 00000000..0915ce16
--- /dev/null
+++ b/bin/steps/django/init
@@ -0,0 +1,2 @@
+source injection
+source collectstatic
\ No newline at end of file
diff --git a/bin/steps/django b/bin/steps/django/injection
similarity index 100%
rename from bin/steps/django
rename to bin/steps/django/injection
diff --git a/bin/steps/pylibmc b/bin/steps/pylibmc
old mode 100644
new mode 100755
-- 
GitLab