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 jekyllbot
parent 28f64fb2b3
commit c2586bbae7
1 changed files with 1 additions and 1 deletions

View File

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