From faa349ca191e25f9967a589bb95e33b36b6c4da1 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.com>
Date: Thu, 19 Jan 2012 15:07:50 -0500
Subject: [PATCH] remove static collection (for now)

---
 bin/steps/django | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/bin/steps/django b/bin/steps/django
index 56f98196..47d181db 100755
--- a/bin/steps/django
+++ b/bin/steps/django
@@ -47,19 +47,3 @@ except Exception:
 
 EOF
 
-
-
-# Collect static files.
-set +e
-echo "-----> Collecting static files"
-
-OUT=$(python $PROJECT/manage.py collectstatic --noinput 2>&1)
-[ $? -ne 0 ] && STATIC_FAILED=1
-
-if [ "$STATIC_FAILED" ]; then
-    echo " !     Error running manage.py collectstatic. See http://devcenter.heroku.com/articles/django-assets for more info."
-else
-    echo "$OUT" | indent
-fi
-
-set -e
-- 
GitLab