diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic
index 999545b992b36ee8c45a299b31aea29d67cefd41..fcbf685be157c1241eff39b2056a5d128702aa31 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 ] && {