view scripts/pullall.groovy @ 97:bdc17bcaf797

CM-130: add standard 'environment' handling for SSDt projects
author smith@nwoca.org
date Mon, 05 Mar 2012 20:56:33 +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
      
  }
}