我如何使用html5bolierplate构建脚本?

时间:2012-10-07 12:37:15

标签: html ant compression

好的,所以。

  1. 我安装了Ant。
  2. 下载了构建脚本。提取到Ant安装位置。
  3. 当我运行'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.
    

    请帮帮我,我很困惑。

1 个答案:

答案 0 :(得分:1)

构建脚本需要一些外部进程(在本例中为您)来设置dir.source属性。

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

ant -Ddir.source=/path/to/dir.source