From 3a1735694f977ddd189f3da129597658404ee056 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 30 Jan 2010 16:26:08 -0800 Subject: [PATCH] better error reporting using rake watch --- doc-src/Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/doc-src/Rakefile b/doc-src/Rakefile index 80a47f7a..7839e259 100644 --- a/doc-src/Rakefile +++ b/doc-src/Rakefile @@ -29,6 +29,7 @@ task :watch do `growlnotify -m "Compilation Complete" --image misc/success-icon.png; exit 0` rescue Exception => e puts ">>> ERROR: #{e.message} <<<" + puts e.backtrace.join("\n") `growlnotify -m "Compilation Error!" --image misc/error-icon.png; exit 0` end end