New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Jekyll 1.0.0 #7
Conversation
@mattmanning I'm having some issues getting Jekyll to build on heroku. I'm getting the following error message ERROR: YOUR SITE COULD NOT BE BUILT:
------------------------------------
Post 0000-00-00-welcome-to-jekyll.markdown.erb does not have a valid date. That file is a test file. It looks like Jekyll is building on top of itself. Does heroku install the gems in the same path as the app? |
I had this same problem. You need to exclude the vendor directory in your configuration. Like so: |
I've since moved to doing the jekyll build using the asset compiler. If I where to finish this out, I would create a config for this that could then be merged with project's jekyll config. I believe Jekyll 1.0 now supports this. |
Oh, interesting, so you've started doing all the building and whatnot via |
👍 |
1 similar comment
👍 |
Would be great to see this merged 👍 |
You can see how I implemented it on my blog's rakefile: https://github.com/cgarvis/chrisgarvis.com/blob/master/Rakefile#L5 |
No description provided.