view scripts/hgcommit.groovy @ 190:524680aba8d3

add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
author smith@nwoca.org
date Fri, 10 Apr 2015 22:39:36 +0100
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
      
  }
}