adaoraul/rack-jekyll

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

jcdavison opened this issue · 1 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