view scripts/pullall.groovy @ 256:91e05187fd79

split release branch creation and dependency lock into separate steps. Force correct deletion of global lock
author smith@nwoca.org
date Wed, 06 Jun 2018 23:15:28 +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
      
  }
}