Hi first just wanted to say thanks for the great gem. I found a minor error when trying to automate a build jekyll build. The build failed because the gem was being executed before the _site directory was created. I added the following code before line 11 to resolve the issue:
Dir::mkdir(site.dest) if !File.directory? site.dest
Hi first just wanted to say thanks for the great gem. I found a minor error when trying to automate a build jekyll build. The build failed because the gem was being executed before the
_sitedirectory was created. I added the following code before line 11 to resolve the issue:Dir::mkdir(site.dest) if !File.directory? site.dest