I'm using this Gradle SSH plugin. It has a method put
that will move files from my local machine to the machine the session is connected to.
My app is fully built and exists in build/app
and I'm trying to move it to /opt/nginx/latest/html/
such that the file build/app/index.html
would exist at /opt/nginx/latest/html/index.html
and that any subfolders of build/app
are also copied over.
My build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.hidetake:gradle-ssh-plugin:1.1.4'
}
}
apply plugin: 'org.hidetake.ssh'
remotes {
target {
host = '<my target vm>'
user = 'user'
password = 'pass'
}
}
...
task deploy() << {
ssh.run {
session(remotes.target) {
put from: 'build/app/', into: '/opt/nginx/latest/html/'
}
}
}
As I have it above, it's putting all the files into /opt/nginx/latest/html/app
. If I change the from
to use fileTree(dir: 'build/app')
then all the files get copied over but I lose the file structure, i.e. build/app/scripts/main.js
gets copied to /opt/nginx/latest/html/main.js
instead of the expected /opt/nginx/latest/html/scripts/main.js
.
How can I copy the CONTENTS of one directory (not the directory itself) into the target directory while retaining folder structure?
You could create a
FileTree
object for yourbuild/app
directory and then ssh your entire tree structure to your remote instance:It should copy your structure and files like: