0

可以,然后呢。

  1. 我已经安装了蚂蚁。
  2. 下载了构建脚本。解压到 Ant 安装位置。

当我运行“runbuildscript”时,一个 cmd 界面会打开大约一秒钟,然后停止。

如果我通过 CMD 导航到文件的位置,那么ant minify它不起作用。

然后我想将构建脚本放置并提取到文件的位置。

这样做时,一个错误来了——

BUILD FAILED
E:\NamanyayG\wamp\www\namanyayg\build.xml:150: The following error occurred whil
e executing this line:
E:\NamanyayG\wamp\www\namanyayg\build.xml:416: E:\NamanyayG\wamp\www\${dir.source} does    not exist.

请帮帮我,我完全糊涂了。

4

1 回答 1

1

构建脚本需要一些外部进程(在这种情况下是你)来设置dir.source属性。

最确定的设置方法是在 ant 命令行上定义它,例如

ant -Ddir.source=/path/to/dir.source
于 2012-10-07T20:53:34.337 回答