view scripts/cloneAll.groovy @ 298:95d4eb5bff0f

remove code that was removing the ssdt_ohio dir in maven local. add publish local task if the project is a local repo and publish ivy is available.
author Marc Davis <marc.davis@mcoecn.org>
date Thu, 22 Dec 2022 14:39:22 -0500
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
}