You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: