view scripts/pullall.groovy @ 291:7dc9624e59f7

Always apply artifactory40 ssdt config. Skip functionality if the build is non bamboo
author Marc Davis <marc.davis@mcoecn.org>
date Mon, 22 Aug 2022 14:32:18 -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
      
  }
}