Merge pull request #4292 from jekyll/pull/fix-liquid-drop-requires

Move require "jekyll/drops/drop" to "jekyll.rb"

Linux does not read files in alphanumeric order, this can lead to
Jekyll drops not working on Linux because the assumption here is that
the collection drop will be required first.
This commit is contained in:
Jordon Bedwell 2015-12-27 12:55:51 -06:00
commit 43618c90c7
2 changed files with 1 additions and 1 deletions

View File

@ -169,6 +169,7 @@ module Jekyll
end end
end end
require "jekyll/drops/drop"
require_all 'jekyll/commands' require_all 'jekyll/commands'
require_all 'jekyll/converters' require_all 'jekyll/converters'
require_all 'jekyll/converters/markdown' require_all 'jekyll/converters/markdown'

View File

@ -1,5 +1,4 @@
# encoding: UTF-8 # encoding: UTF-8
require "jekyll/drops/drop"
module Jekyll module Jekyll
module Drops module Drops