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:
commit
43618c90c7
|
@ -169,6 +169,7 @@ module Jekyll
|
|||
end
|
||||
end
|
||||
|
||||
require "jekyll/drops/drop"
|
||||
require_all 'jekyll/commands'
|
||||
require_all 'jekyll/converters'
|
||||
require_all 'jekyll/converters/markdown'
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
# encoding: UTF-8
|
||||
require "jekyll/drops/drop"
|
||||
|
||||
module Jekyll
|
||||
module Drops
|
||||
|
|
Loading…
Reference in New Issue