From 3c699f836e04bb0df3682b6941886fb573f91cd9 Mon Sep 17 00:00:00 2001
From: Adam Hull <adam@hmlad.com>
Date: Sat, 4 Jan 2014 19:41:48 -0800
Subject: [PATCH] Warn on stylus errors

---
 tasks/stylus.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tasks/stylus.js b/tasks/stylus.js
index 43e8381..eff2365 100644
--- a/tasks/stylus.js
+++ b/tasks/stylus.js
@@ -105,8 +105,7 @@ module.exports = function(grunt) {
 
     s.render(function(err, css) {
       if (err) {
-        grunt.log.error(err);
-        grunt.fail.warn('Stylus failed to compile.');
+        grunt.log.warn(err);
 
         callback(css, true);
       } else {