SASS does not work after updating the OS

It seems to me that SASS is trying to use the wrong version of ruby ​​after updating Yosemite:

$ sass
bash: /usr/bin/sass: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby: bad interpreter: No such file or directory

I'm sure he should point to /System/Library/Frameworks/Ruby.framework/Versions/current/...

Is there any way to update sass ruby ​​path?

change

$sudo gem update sass

Has no effect

+4
source share
2 answers

Removing sass and reinstalling fixed.

sudo gem uninstall sass
sudo gem install sass
+5
source

You do not need to run sudo gem uninstall sass( sass -vgives the same error).

Doing just sudo gem install sassenough to update SASS.

0
source

All Articles