From 335a14c7149bfd3186326a83053b93afc80c9f45 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 31 May 2012 01:50:20 -0400 Subject: [PATCH] better comments --- 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 0b90dd1..521cca1 100755 --- a/bin/steps/django/collectstatic +++ b/bin/steps/django/collectstatic @@ -8,7 +8,7 @@ indent() { [ $(uname) == "Darwin" ] && sed -l "$RE" || sed -u "$RE" } -# Check if collectstatic is configured. +# Check if collectstatic is configured properly. python $MANAGE_FILE collectstatic --dry-run &> /dev/null && RUN_COLLECTSTATIC=true echo "-----> Collecting static files"