Jekyll's “--auto” doesn't work?

前端 未结 2 1088
耶瑟儿~
耶瑟儿~ 2020-12-31 07:01

I have just reinstalled my whole system and started working on my projects again. I used and still use Jekyll in some of them however I have a problem with auto generation u

2条回答
  •  长发绾君心
    2020-12-31 07:19

    I was able to fix this by hard-locking the directory_watcher gem as per @lilakai, but I did it a different way:

    Added this line to my gemfile (within the development group):

    gem 'directory_watcher', '1.4'
    

    And ran:

    bundle update directory_watcher
    

    Everything worked once I did this (as it locked my version to 1.4, which I confirmed via the Gemfile.lock). I prefer managing all of my gems directly through bundler as opposed to through system ruby.

    I ran into this problem using the most recent version of Octopress (https://github.com/imathis/octopress) at the time of this post.

提交回复
热议问题