ant sshexec在没有给出任何消息的情况下终止

时间:2013-04-04 07:37:43

标签: ant

我正在尝试解压缩远程服务器中提供的zip文件。 完成后有一个日志条目,这根本不会发生。 输出文件也没有太多细节。

1.。)如何禁用sshexec控制台打印? 2.)为什么这不是打印最终记录器声明? 3.)这不是解压缩完整的zip文件吗?

<target name="unzip">
    <echo level="info">==== Extracting zip file ====</echo>
        <sshexec host="${host}" username="${user}" password="${password}" output="${log.file}" command="unzip -o  ${path}/${zipdata}.zip -d ${path2}/${zipdata}/" trust="true" />
    <echo level="info">==== Extracting zip file completed====</echo>
</target>

0 个答案:

没有答案