我们在Windows上使用HTML5 Boilerplate Build Script,我想知道在运行 ant build 时是否可以在命令行中指定 dir.source 参数,而不是在每次我们想要在不同目录中构建模板时在 default.properties 文件中对其进行编辑。
dir.source = ./template/company1
dir.source 参数会不断更改,就像在CMS的不同目录中构建模板一样,例如 ./ template / company1 和 ./ template / company2 等
如果我们每次想要在不同的目录中构建一个非常棒的模板时都可以避免编辑default.properties文件,那么任何帮助都会非常感激!
答案 0 :(得分:0)
尝试使用以下内容:
<javac srcdir="${srcdir}" destdir="${build.dir}"/>
并将其命名为:
ant -Dsrcdir="template/company1"
你需要的是什么?