我正在尝试使用以下目标在我的 ant 脚本中添加一些标签信息,但出现错误(结果 = -1),并且 hg 告诉我它无法识别该命令:
<target name="-post-init">
<exec outputproperty="hg.tag" executable="hg">
<arg value="parents --template {latesttag}+{latesttagdistance}" />
</exec>
</target>
如果我只包括value="parents"
它工作正常。
如果我运行命令行hg parents --template {latesttag}+{latesttagdistance}
它也可以正常工作。
关于我的语法有什么问题的任何想法?