# HG changeset patch # User Marc Davis # Date 1686767891 14400 # Node ID 0bef709263cdf6bdc4000218205c777d7e8926c7 # Parent 54614542f0f713758b3148bd3ca6e57ca962894d add println for debugging diff -r 54614542f0f7 -r 0bef709263cd init50-git.gradle --- a/init50-git.gradle Wed Jun 14 14:32:05 2023 -0400 +++ b/init50-git.gradle Wed Jun 14 14:38:11 2023 -0400 @@ -810,7 +810,10 @@ .sort { v1, v2 -> v2 <=> v1 } def branches = "git branch --remote".execute().text.split("\n") - .findAll { it.contains('release') || it.contains('hotfix') } + .findAll { + println "Found branch ($it)" + it.contains('release') || it.contains('hotfix') + } .collect { it.replaceAll('\\s+', ' ').split('/').last() - 'v' } .collect { new Version(*it.split('\\.')*.toInteger()) }