我在循环中使用ant scp任务,我关闭了failonerror。但我需要跟踪失败的迭代。有什么像exec的resultproperty?我可以在unix上使用exec而不是scp,但我需要在windows上使用。
任何帮助将不胜感激......
提前致谢..
答案 0 :(得分:0)
您可以放置recorder task around scp invocations并评估日志文件。示例来自doc:
<whatever >
<record name="log.txt" action="start"/>
<scp ...
<record name="log.txt" action="stop"/>
<whatever />