0

我正在尝试使用以下目标在我的 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}它也可以正常工作。

关于我的语法有什么问题的任何想法?

4

1 回答 1

6

刚试过这个,它工作正常:

    <exec outputproperty="hg.tag" executable="hg">
        <arg value="parents" />
        <arg value="--template" />
        <arg value="{latesttag}+{latesttagdistance}" />
    </exec>

我需要拆分论点。

于 2012-04-18T19:56:43.773 回答