Improved error message for category_generator plugin. Addresses #116

source
Brandon Mathis 2013-01-12 16:20:31 -06:00
parent 745e8f77bb
commit d774630d3e
1 changed files with 11 additions and 1 deletions

View File

@ -111,7 +111,17 @@ module Jekyll
# Throw an exception if the layout couldn't be found.
else
throw "No 'category_index' layout found."
raise <<-ERR
===============================================
Error for category_generator.rb plugin
-----------------------------------------------
No 'category_index.hmtl' in source/_layouts/
Perhaps you haven't installed a theme yet.
===============================================
ERR
end
end