diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-12-20 00:00:27 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-12-20 00:00:27 -0500 |
commit | 2e1c500dec65cca8c8c484e3aab0daaa645af78a (patch) | |
tree | 240ad8a3ec42febe860550a4d6d3939b221f78f1 | |
parent | c9135bc8e2e64a745e5aa235f34f35e455263216 (diff) | |
download | delivery_control-2e1c500dec65cca8c8c484e3aab0daaa645af78a.tar.gz |
Actually transfer the correct files
-rw-r--r-- | deliver.groovy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deliver.groovy b/deliver.groovy index 2f411fe..807ca84 100644 --- a/deliver.groovy +++ b/deliver.groovy @@ -6,6 +6,7 @@ // aux_packages // conda_installer_version // conda_version +// remote_host // output_dir def gen_specfiles(label) { @@ -79,7 +80,7 @@ node('master') { withCredentials([usernamePassword(credentialsId: '322ad15d-2f5b-4d06-87fa-b45a88596f30', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) { - sh "rsync -avzr hstdp*.txt ${USERNAME}@${hostname}:${output_dir}" + sh "rsync -avzr ${delivery_pipeline}*.txt ${USERNAME}@${hostname}:${output_dir}" } } } |