From 285aa54445a5f9aead0cabd79b6e4980f3dd927c Mon Sep 17 00:00:00 2001 From: Ben Balter Date: Fri, 11 Mar 2016 16:18:11 -0500 Subject: [PATCH] remove even more asset support --- lib/jekyll/theme.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/jekyll/theme.rb b/lib/jekyll/theme.rb index 62b2dae5..25160f80 100644 --- a/lib/jekyll/theme.rb +++ b/lib/jekyll/theme.rb @@ -27,8 +27,7 @@ module Jekyll private def path_for(folder) - folder = "_#{folder}" unless folder == :assets - path = Jekyll.sanitized_path root, folder.to_s + path = Jekyll.sanitized_path root, "_#{folder}" path if Dir.exists?(path) end