view scripts/pullall.groovy @ 259:020de521e394

Add overrideVui capability
author Greg Shepherd <shepherd@nwoca.org>
date Fri, 19 Oct 2018 10:57:27 -0400
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
      
  }
}