Mercurial > public > develkit
view scripts/pullall.groovy @ 241:1c91b76fd9a3
USASR-2436: Remove usages of leftShift in favor of doLast
author | Christopher Springer <springer@nwoca.org> |
---|---|
date | Wed, 21 Dec 2016 13:22:44 +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 } }