Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jekyll not regenerating

Tags:

css

sass

jekyll

I've been experimenting with Jekyll, and I can't get Jekyll to regenerate file changes (jekyll --server --auto). I'm using Sass, but I can't even get it to work with normal css. I've tried plugins, I've tried pulling other people's repos and just using there code, but no luck. What am I doing wrong?

like image 971
Spentacular Avatar asked Oct 21 '22 12:10

Spentacular


1 Answers

It's a problem with the gem. An easy fix is:

gem uninstall directory_watcher
gem install directory_watcher -v 1.4.1

Here's a link for reference: https://github.com/mojombo/jekyll/issues/970

like image 184
Spentacular Avatar answered Oct 24 '22 15:10

Spentacular