view scripts/pullall.groovy @ 115:8ddd1a6fa4ea

patch to improve identification of bamboo severs
author smith@nwoca.org
date Wed, 31 Oct 2012 22:27:31 +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
      
  }
}