diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic
index f09219528d65ea8e82fe02e04eecac26d71f7c8a..8389016b8043d9f9f923f40320fea715f80dc64c 100755
--- a/bin/steps/django/collectstatic
+++ b/bin/steps/django/collectstatic
@@ -21,9 +21,7 @@ set -e
 if [ "$RUN_COLLECTSTATIC" ]; then
     python $MANAGE_FILE collectstatic --noinput | indent
 
-    COLLECTSTATIC=$?
-
-    [ $COLLECTSTATIC -ne 0 ] && [ ! "$SILENCE_COLLECTSTATIC" ] && {
+    [ $? -ne 0 ] && {
         echo " !     Error running manage.py collectstatic. More info:"
         echo "       http://devcenter.heroku.com/articles/django-assets"
         exit 1