annotate scripts/cloneAll.groovy @ 283:fb30d6042d3c

SSED-1600: Renamed unused init60.gradle to init70.gradle, check for Gradle version 7.0, added resources.text.fromInsecureUri for http referenced resources
author Kyle Miller <kyle.miller@mcoecn.org>
date Thu, 16 Jun 2022 17:42:27 +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 }