view scripts/hgall.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

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
      
  }
}