view scripts/pullall.groovy @ 289:093ff657fd79

SSED-1600: Changed Gradle version check from Gradle 7.0 to Gradle 7.2
author Kyle Miller <kyle.miller@mcoecn.org>
date Tue, 19 Jul 2022 16:57:55 +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
      
  }
}