adaoraul / rack-jekyll

Transform your Jekyll app into Rack application!

Home Page:http://adaoraul.github.io/rack-jekyll

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Any insights into why I have this persistent problem when deploying to heroku?

jcdavison opened this issue · comments

Hi @adaoraul great gem, thanks.

Do you have any insight into why I occasionally get this error on heroku?
I've seen it across multiple projects I have, not really sure how to debug, not very rich content on the internet. Thanks :)

Screenshot 2019-04-10 08 32 36

hmm maybe something like this is the solution?

# get rid of this 
# namespace :assets do
#   task :precompile do
#     puts 'bundle exec jekyll build'
#   end
# end

#use this
task :build do
  system('bundle exec jekyll build')
end

namespace :assets do
  task precompile: :build
end