所以我有这个构建文件
{
"cmd": ["coffee", "-c", "$file"],
"selector": "source.coffee",
"path": "C:\\Users\\Miles\\node_modules\\coffee-script\\bin",
"working_dir": "$project_path"
}
它一直在返回错误
[错误2]系统找不到指定的文件
我已经找了几天而且我能找到的只是基于unix的路径。
我知道这很可能是微不足道的,但它已经有一段时间了。
答案 0 :(得分:3)
{
"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"
}