Mercurial > public > develkit
view scripts/pullall.groovy @ 231:ce34e62224cf
update set dependencyLock plugin to also lock transitives. provide way of overriding common version
author | smith@nwoca.org |
---|---|
date | Thu, 08 Sep 2016 17:10:43 +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 } }