Mercurial > public > develkit
view scripts/hgall.groovy @ 256:91e05187fd79
split release branch creation and dependency lock into separate steps. Force correct deletion of global lock
author | smith@nwoca.org |
---|---|
date | Wed, 06 Jun 2018 23:15:28 +0100 |
parents | f351338a3b3a |
children |
line wrap: on
line source
cmd = args ? args.join(' ') : 'out' new File(".").eachDirRecurse { d -> if ( new File(d,".hg").exists() ) { println "$d.absolutePath: $cmd \n-----------------------------------" println "hg -R ${d.absolutePath} ${cmd}".execute().text } }