7

I have the following message when trying to add a new file watcher. Still can't find the solution. Can someone help me?

enter image description here

Monica
  • 1,524
  • 4
  • 27
  • 44
  • 3
    You need to fill the `program` field with the full path to the program that will be called by this file watcher (in your case it's supposed to be SCSS compiler). – LazyOne Sep 03 '14 at 13:43

2 Answers2

4

If you need to compile SCSS to CSS, you need to install the SASS compiler (gem install sass) and configure it as a file watcher for .scss files (http://www.jetbrains.com/webstorm/webhelp/transpiling-sass-less-and-scss-to-css.html#d128637e458)

lena
  • 90,154
  • 11
  • 145
  • 150
1

Encountered this in the newest version of the IDE as well. Would like to mention that another possibly overlooked thing (as is my case), was the execution bit in chmod. I had the script but didn't give myself the exec privilege.

Scott Yang
  • 2,348
  • 2
  • 18
  • 21