Gant、Groovy scp 和 Ant

发布于 2024-11-30 18:16:26 字数 339 浏览 1 评论 0原文

我正在尝试将目录发送到远程服务器,但出现此错误。请帮助

需要 [文件|本地文件|远程文件] 之一或一个或多个嵌套文件集。


    ant.scp(todir:"[email protected]:/home/user/db",keyfile:"test.pem") {
        fileset(dir:"/home/test")
    }

I'm trying to scp a directory to a remote server, but I'm getting this error. Please help

Exactly one of [file|localfile|remotefile] or one or more nested filesets is required.


    ant.scp(todir:"[email protected]:/home/user/db",keyfile:"test.pem") {
        fileset(dir:"/home/test")
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜空下最亮的亮点 2024-12-07 18:16:26

您使用哪个版本的 ant 和 groovy?
我使用 ant 1.8.2,groovy 1.8.6,jsch 0.1.46,ant-jsch 1.6.2,ant 这个脚本可以工作:

ant = new AntBuilder()
ant.scp(todir:"[email protected]:~/temp",keyfile:"/tmp/user1.pem",verbose:true, trust:true, passphrase:""){
    fileset(dir:"/user1/temp")
}

Which version of ant and groovy do you use?
I use ant 1.8.2, groovy 1.8.6, jsch 0.1.46,ant-jsch 1.6.2, ant this script do works:

ant = new AntBuilder()
ant.scp(todir:"[email protected]:~/temp",keyfile:"/tmp/user1.pem",verbose:true, trust:true, passphrase:""){
    fileset(dir:"/user1/temp")
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文