view scripts/cloneAll.groovy @ 253:46064f36ae31

remove old jaranalyzer and replace with stub to avoid breaking projects
author smith@nwoca.org
date Thu, 01 Feb 2018 21:17:20 +0000
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
}