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

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

   if  ( new File(d,".hg").exists() ) {   
      println d.name
      
     println  "hg pull -R ${d.name} -u".execute().text
      
  }
}