view scripts/pullall.groovy @ 160:6af68acaf9b2

modify to use bamboo env varible to override branchName
author Dave Smith <smith@nwoca.org>
date Wed, 06 Nov 2013 16:36:31 +0000
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
      
  }
}