Merge pull request #2310 from jekyll/fix-get-cwd-error
This commit is contained in:
commit
875718f40c
|
@ -433,7 +433,7 @@ module Jekyll
|
||||||
end
|
end
|
||||||
|
|
||||||
def has_yaml_header?(file)
|
def has_yaml_header?(file)
|
||||||
!!(File.open(file, "rb").read(5) =~ /\A---\r?\n/)
|
!!(File.open(file, 'rb') { |f| f.read(5) } =~ /\A---\r?\n/)
|
||||||
end
|
end
|
||||||
|
|
||||||
def limit_posts!
|
def limit_posts!
|
||||||
|
|
Loading…
Reference in New Issue