When I try to run coffeescript file,it is not working for running.I can compile the file but can run it.
This is my build settings:
{
"cmd": ["coffee.cmd","-c","$file"]
, "selector": "source.coffee"
, "working_dir": "$project_path"
, "variants":
[
{
"name": "Run",
"cmd": ["coffee", "$file"]
}
] }
I already put the binary file location to environment variables. Every times I run the coffee scripts,it gives me the following error.
[Error 2] The system cannot find the file specified
[cmd: [u'coffee', u'D:\\coffeescript\\demo.coffee']]
[dir: D:\coffeescript]
[path: C:\ColdFusion9\verity\k2\_nti40\bin;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\Samsung\AllShare Framework DMS\1.3.06\;C:\Program Files\Samsung\AllShare Framework DMS\1.3.06\64bit\;C:\Program Files (x86)\Calibre2\;D:\4.Application\#Tools\Console2\;C:\Program Files\Java\jdk1.7.0_11\bin\;D:\LINGO14\;C:\Program Files\nodejs\;C:\Ruby200-x64\bin;C:\Users\aungt_000\AppData\Roaming\npm;]
[Finished]
How can I fix that?