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:48:21 -06:00
parent 5034216637
commit f2f88dbd9f
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