annotate scripts/cloneAll.groovy @ 238:d7f0ae9e28af

DEP-12: restrict analysis to default, release and hotfox branches
author smith@nwoca.org
date Thu, 20 Oct 2016 22:13:39 +0100
parents f351338a3b3a
children
rev   line source
93
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
1
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
2 def path = "/hg/ssdt/USPS"
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
3 def parent = path.split('/').last()
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
4 def repos = "ssh ssdt-web-05 -C ls $path".execute().text.split('\n')
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
5
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
6 println parent
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
7 println repos
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
8
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
9 new File(parent).mkdir()
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
10
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
11 repos.each {
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
12 println "cloning: $path/$it to $parent/$it ..."
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
13 println "hg clone ssh://hg.ssdt-ohio.org/$path/$it $parent/$it".execute().text
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
14 }