我想将我的“exec grails”任务运行到我的grails项目中。我在exec任务中设置了grail路径,如
<exec executable="${grails}"
怎么说,exec应该从我的项目文件夹开始?
非常感谢!
答案 0 :(得分:21)
来自exec
Ant task documentation:
Attribute Description dir the directory in which the command should be executed.
<exec executable="${grails}" dir="${my.project.dir}">