我通常在Mac上使用Sublime Text工作,没关系。但我正试图在家中使用我的Windows PC设置Sublime Text,并在尝试运行我的构建脚本时不断收到错误。
这是我的项目文件:
{
"folders":
[
{
"path": "my-folder"
}
],
"build_systems":
[
{
"name": "Ant",
"cmd": ["ant"],
"working_dir": "${project_path}"
}
]
}
这是我得到的错误:
[Error 2] The system cannot find the file specified
[cmd: [u'ant']]
[dir: D:\Users\****\Projects]
[path: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\]
[Finished]
似乎找不到ANT?但是不是与Sublime Text捆绑在一起吗?
答案 0 :(得分:0)
在命令行中键入“ant”。如果它抛出错误,那么ant不在你的PATH中。您需要安装它(http://ant.apache.org/manual/install.html),然后将其添加到PATH环境变量中。
我使用Sublime,但我不知道它是否默认包装Ant。如果是,只需将二进制文件的位置添加到系统路径。