Nil-out `@collections` so `#collections` will re-compile

This commit is contained in:
Parker Moore 2014-04-24 12:16:39 -04:00
parent fd98d5b1e6
commit a27e5825b9
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ module Jekyll
self.pages = [] self.pages = []
self.static_files = [] self.static_files = []
self.data = {} self.data = {}
@collections = {} @collections = nil
if limit_posts < 0 if limit_posts < 0
raise ArgumentError, "limit_posts must be a non-negative number" raise ArgumentError, "limit_posts must be a non-negative number"