fail gracefully if "sass" gem cannot be loaded (#6573)

Merge pull request 6573
This commit is contained in:
ashmaroli
2017-11-22 00:58:08 +05:30
committed by Frank Taillandier
parent c2195b0118
commit 6b003a4438

View File

@@ -38,7 +38,7 @@ module Jekyll
def configure_sass
return unless sass_path
require "sass"
Jekyll::External.require_with_graceful_fail "sass"
Sass.load_paths << sass_path
end