Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problems when creating Compass project (EACCES on line ["891"])

I am having problems when creating a new compass project (Windows 7). I get this:

C:\>compass create a
   create config.rb
Errno::EACCES on line ["891"] of C: Permission denied - (C:/a/config.rb20140321-6828-1g0ytlc, C:/a/config.rb)
Run with --trace to see the full backtrace

I have tried to start cmd with "Run as administrator", I have tried to delete compass, sass and ruby, and reinstalled without any luck. Anyone else having problems or know a solution to this irritating problem?

like image 842
Numm3n Avatar asked Mar 21 '14 12:03

Numm3n


1 Answers

I was using the latest version (21.03.2014) of compass v.0.12.4... Downgraded to v.0.12.2 everything worked fine!

Looks like a bug?

To downgrade:

$ gem uninstall compass 
$ gem uninstall sass 
$ gem install compass -v 0.12.2 
$ gem install sass -v <rev>
like image 124
Numm3n Avatar answered Oct 26 '22 06:10

Numm3n