From f2f88dbd9f1f4035d7fc51e2dbb6e75d07cd64e7 Mon Sep 17 00:00:00 2001 From: Jordon Bedwell Date: Sun, 27 Dec 2015 12:48:21 -0600 Subject: [PATCH] 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. --- lib/jekyll.rb | 1 + lib/jekyll/drops/collection_drop.rb | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll.rb b/lib/jekyll.rb index e3fca10b..3d33e52c 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -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' diff --git a/lib/jekyll/drops/collection_drop.rb b/lib/jekyll/drops/collection_drop.rb index 009635a4..26913230 100644 --- a/lib/jekyll/drops/collection_drop.rb +++ b/lib/jekyll/drops/collection_drop.rb @@ -1,5 +1,4 @@ # encoding: UTF-8 -require "jekyll/drops/drop" module Jekyll module Drops