gradle-ssh-plugin
gradle-ssh-plugin copied to clipboard
Scp folder task
I want to copy all files from a folder /src into the folder /dest on server. If I do ssh.run { session(remotes.webServer) { put from: "src/", into: 'dest/' } }
I get in destination dest/src/myfiles. How may I copy them ? Should be this a feature ?