From 08338a4a262ba6b8585822cd52383017087bcf22 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 31 May 2012 01:59:07 -0400 Subject: [PATCH] Do everything except modify the filesystem. --- bin/steps/django/collectstatic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic index 19cf88c..95dad73 100755 --- a/bin/steps/django/collectstatic +++ b/bin/steps/django/collectstatic @@ -9,7 +9,7 @@ indent() { } # Check if collectstatic is configured properly. -python $MANAGE_FILE collectstatic --dry-run &> /dev/null && RUN_COLLECTSTATIC=true +python $MANAGE_FILE collectstatic --dry-run --noinput &> /dev/null && RUN_COLLECTSTATIC=true echo "-----> Collecting static files"