Mercurial > public > develkit
view scripts/pullall.groovy @ 234:49e9edc80170
DEP-12: fix sonar disabled message
author | smith@nwoca.org |
---|---|
date | Wed, 19 Oct 2016 22:45:17 +0100 |
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 } }