0

我通常在工作时在 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 捆绑在一起的吗?

4

1 回答 1

0

在命令行中输入“ant”。如果它抛出一个错误,那么 ant 不在你的 PATH 中。您需要安装它(http://ant.apache.org/manual/install.html),然后将其添加到您的 PATH 环境变量中。

我用的是Sublime,不知道是不是默认打包了Ant。如果是这样,只需将二进制文件的位置添加到系统 PATH。

于 2013-04-15T16:30:50.500 回答