comparison scripts/pullall.groovy @ 93:f351338a3b3a

adding useful scripts
author smith@nwoca.org
date Wed, 22 Feb 2012 19:14:04 +0000
parents
children
comparison
equal deleted inserted replaced
92:90325a10fe95 93:f351338a3b3a
1
2 new File(".").eachDir { d ->
3
4 if ( new File(d,".hg").exists() ) {
5 println d.name
6
7 println "hg pull -R ${d.name} -u".execute().text
8
9 }
10 }