annotate scripts/cloneAll.groovy @ 277:7352aab6847e
SC-181 Add new init50 and metrics50 gradle files for compatibility with gradle 5.0
author |
Greg Shepherd <shepherd@ssdt-ohio.org> |
date |
Tue, 18 Feb 2020 16:16:23 -0500 |
parents |
f351338a3b3a |
children |
|
rev |
line source |
93
|
1
|
|
2 def path = "/hg/ssdt/USPS"
|
|
3 def parent = path.split('/').last()
|
|
4 def repos = "ssh ssdt-web-05 -C ls $path".execute().text.split('\n')
|
|
5
|
|
6 println parent
|
|
7 println repos
|
|
8
|
|
9 new File(parent).mkdir()
|
|
10
|
|
11 repos.each {
|
|
12 println "cloning: $path/$it to $parent/$it ..."
|
|
13 println "hg clone ssh://hg.ssdt-ohio.org/$path/$it $parent/$it".execute().text
|
|
14 } |