Reputation: 88197
I am trying to install https://github.com/markyoung/silk-sass-mixin
$ (sudo) gem install compass
$ git clone http://github.com/zarzax/silk-sass-mixin.git
$ cd silk-sass-mixin
$ compass -w
I get
D:\ResourceLibrary\Frameworks\silk-sass-mixin>compass -w WARNING: This interface is deprecated. Please use the new subcommand interface. See
compass helpfor more information.
Whats the new command then?
Upvotes: 0
Views: 306
Reputation: 18068
-w watches a project for changes and recompile when a change is occurred.
The new command command for watch is:
compass watch [path/to/project] [path/to/project/src/file.sass ...] [options]
In the way you are using (as you are going to the project directory using cd silk-sass-mixin
, you need to use
compass watch
Instead of
compass -w
Upvotes: 1