Catching that the Redcarpet gem has been installed. Fixes #1059
This commit is contained in:
parent
8bd14f18f6
commit
0c04e5d55b
|
@ -2,6 +2,8 @@
|
|||
### Major Enhancements
|
||||
### Minor Enhancements
|
||||
### Bug Fixes
|
||||
* Catching that Redcarpet gem isn't installed (#1059)
|
||||
|
||||
### Site Enhancements
|
||||
### Development Fixes
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ module Jekyll
|
|||
include WithoutPygments
|
||||
end
|
||||
end
|
||||
rescue LoadErro
|
||||
rescue LoadError
|
||||
STDERR.puts 'You are missing a library required for Markdown. Please run:'
|
||||
STDERR.puts ' $ [sudo] gem install redcarpet'
|
||||
raise FatalException.new("Missing dependency: redcarpet")
|
||||
|
|
Loading…
Reference in New Issue