Mercurial > public > develkit
view scripts/pullall.groovy @ 124:81a8ecfbc8fa
update init script to support groovy indy builds
author | smith@nwoca.org |
---|---|
date | Sat, 16 Feb 2013 17:37:43 +0000 |
parents | f351338a3b3a |
children |
line wrap: on
line source
new File(".").eachDir { d -> if ( new File(d,".hg").exists() ) { println d.name println "hg pull -R ${d.name} -u".execute().text } }