view scripts/cloneAll.groovy @ 287:b19757184b5e

SSED-1600: Created artifactory70.gradle which has a getter for internal property isFeature (required for Gradle 7+)
author Kyle Miller <kyle.miller@mcoecn.org>
date Tue, 19 Jul 2022 14:50:34 +0100
parents f351338a3b3a
children
line wrap: on
line source

def path = "/hg/ssdt/USPS"
def parent = path.split('/').last()
def repos =  "ssh ssdt-web-05 -C ls $path".execute().text.split('\n')

println parent
println repos 

new File(parent).mkdir()

repos.each {
 println "cloning: $path/$it to $parent/$it ..."
 println  "hg clone ssh://hg.ssdt-ohio.org/$path/$it $parent/$it".execute().text
}