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

comment = args ? args.join(' ') : 'out'

new File(".").eachDirRecurse { d ->

   if  ( new File(d,".hg").exists() ) {   
     println "$d.absolutePath: $comment \n-----------------------------------"      
     println  "hg -R ${d.absolutePath} commit -m \"${comment}\"".execute().text
      
  }
}