I am getting an error on forming the gstring below, can someone suggest the right way to form this gstring?
for(File fileToUnarchive: filesToUnarchive)
{
antBuilder.mkdir(dir:"${destinationDirectory}/${getSequenceNumber(${fileToUnarchive.name})}")
}
The problem is you’re trying to double template the last section
Instead of
just do