Skip to content

Commit

Permalink
LPD-49776 update parseVersion to support -lts versions
Browse files Browse the repository at this point in the history
  • Loading branch information
annasuszter authored and drewbrokke committed Mar 5, 2025
1 parent 10c6698 commit 9ca2179
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ public static IProject openProject(String projectName, IPath dir, IProgressMonit
}

public static Version parseVersion(String versionString) {
return Version.parseVersion(versionString.replace("q", ""));
return Version.parseVersion(versionString.replaceAll("q|-lts", ""));
}

public static void prepareFolder(IFolder folder) throws CoreException {
Expand Down

0 comments on commit 9ca2179

Please sign in to comment.