Path variable for building coffeescript in sublime windows

So I have this build file

{ "cmd": ["coffee", "-c", "$file"], "selector": "source.coffee", "path": "C:\\Users\\Miles\\node_modules\\coffee-script\\bin", "working_dir": "$project_path" } 

And he keeps returning an error

[Error 2] The system cannot find the specified file

I searched for a few days, and all I can find is UNIX based paths.

I know that this is most likely trivial, but for a while he was looking

0
source share
1 answer

after repeated use it works great.

 { "cmd": ["coffee.cmd", "-c", "$file"], "selector": "source.coffee", "file_regex": "^(...*?):([0-9]*):?([0-9]*)", "path": "$HOME/bin:/usr/local/bin:$PATH", "working_dir": "$project_path" } 
+3
source

All Articles