annotate scripts/pullall.groovy @ 275:476b0c13b22e

SSED-1253: Remove DependencyResolveDetails
author Wendy Root <root@nwoca.org>
date Wed, 16 Oct 2019 15:31:26 -0400
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 new File(".").eachDir { d ->
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
3
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
4 if ( new File(d,".hg").exists() ) {
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
5 println d.name
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
6
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
7 println "hg pull -R ${d.name} -u".execute().text
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
8
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
9 }
f351338a3b3a adding useful scripts
smith@nwoca.org
parents:
diff changeset
10 }