From 12f28894ceb6696084902628014ad86ef7354a05 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.com>
Date: Wed, 30 May 2012 04:14:10 -0400
Subject: [PATCH] collecting static files

---
 bin/steps/django/collectstatic | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic
index 999545b9..fcbf685b 100755
--- a/bin/steps/django/collectstatic
+++ b/bin/steps/django/collectstatic
@@ -17,9 +17,10 @@ if [ ! "$SILENCE_COLLECTSTATIC" ]; then
     set -e
 fi
 
+echo "-----> Collecting static files"
+
 # Compile assets if collectstatic appears to be kosher.
 if [ "$RUN_COLLECTSTATIC" ]; then
-    echo "-----> Collecting static files"
     python $MANAGE_FILE collectstatic --noinput | indent
 
     [ $? -ne 0 ] && {
-- 
GitLab