I am trying to run the sass --watch command in a bat file like so
@echo off
set path="C:\styles"
sass --watch %path%
pause
I am getting the error 'sass' is not recognized as an internal or external command etc....
I get the same issue if i try calling ruby.exe
I can run sass and ruby in a command line window and it works fine. Ruby version 1.9.3.3p362, Sass version 3.2.5 (Media Mark), Windows 7
I have tried adding 'call' before the sass command and running as administrator but no success so far.
Thanks for any help