Nil-out `@collections` so `#collections` will re-compile
This commit is contained in:
parent
fd98d5b1e6
commit
a27e5825b9
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue