From b88d0ad8003d21648d2c96c95faa0548945eadb6 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.com>
Date: Wed, 23 May 2012 13:06:50 -0400
Subject: [PATCH] Don't fail fast.

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

diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic
index 28ff995e..40531a2c 100755
--- a/bin/steps/django/collectstatic
+++ b/bin/steps/django/collectstatic
@@ -1,5 +1,7 @@
 #!/usr/bin/env bash
 
+set +e
+
 # Compile assets.
 echo "-----> Collecting static files"
 python $PROJECT/manage.py collectstatic --noinput  | indent
-- 
GitLab