annotate scripts/cloneAll.groovy @ 155:6389a03379a6

CM-135: allow environment* scripts to access gradle project
author Dave Smith <smith@nwoca.org>
date Mon, 28 Oct 2013 16:00:23 +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 }