view scripts/pullall.groovy @ 282:8adc604ccdc3

SSED-1600: Updated deprecated methods in init50.gradle
author Christian Inman <inman@ssdt-ohio.org>
date Wed, 11 May 2022 12:00:34 -0400
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
      
  }
}