view scripts/hgall.groovy @ 282:8adc604ccdc3

SSED-1600: Updated deprecated methods in init50.gradle
author Christian Inman <inman@ssdt-ohio.org>
date Wed, 11 May 2022 12:00:34 -0400
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
      
  }
}