6 lines
163 B
Groovy
6 lines
163 B
Groovy
task copySshKnownHosts(type: Copy) {
|
|
from 'private/known_hosts'
|
|
into System.properties['user.home'] + '/.ssh'
|
|
}
|
|
|
|
uploadArchives.dependsOn copySshKnownHosts |