I've got an edit variable, where I get the choice from a groovy script:
${groovy:
def file = new File(vars.get("WorkingFolder").toString())
"git tag -l build/* --sort=-taggerdate".execute(null, file).in.text
}
In the selection box, the first entry is missing compared to the result that I get on the command line.
What could be the reason?