Mercurial > public > develkit
view scripts/pullall.groovy @ 258:98a734a5287e
permit usas.core and usps.core versions to be overridden via properties
author | smith@nwoca.org |
---|---|
date | Thu, 18 Oct 2018 00:20:35 +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 } }