d63966254722a902d26ecca164caffb907ee57f6
@mikeb please check. Do you have an idea why it did not work? println(projectsSelector.names().contains("project/c3i-carawang-123")) -> True println(projectsSelector.names().contains("project/${projectName}")) -> False println(projectsSelector.names().contains("project/" + projectName)) -> True
@mkovarik Maybe it's a String vs. GString comparison problem? I've seen that in a couple places. Did you try:
String
GString
.contains("project/${projectName}" as String)
?
rebased onto b34cde4d72ba48d50c88d49d17dfd019db829236
Yes, that works
Did you want to leave this PR as-is, or change it?
As-is
rebased onto 10edeb3d2391275fb11a6f22bd042614752e4e3b
rebased onto 1e586775fa59c6bb84a48308f730f894c162a2ae
rebased onto d63966254722a902d26ecca164caffb907ee57f6
Pull-Request has been merged by mikeb