Skip to content

Commit cfc9182

Browse files
authored
Merge pull request #9 from eharris369/fixCheckForBranchVersion
Fix check for branch version
2 parents 8da6e96 + 0a2cf5f commit cfc9182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/com.ibm.microclimate.core/src/com/ibm/microclimate/core/internal/connection/MicroclimateConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ else if (!isSupportedVersion(version)) {
9494
version, MCConstants.REQUIRED_MC_VERSION));
9595
}
9696

97-
if (MCConstants.VERSION_LATEST.equals(version)) {
97+
if (MCConstants.VERSION_LATEST.equals(version) || pattern.matcher(version).matches()) {
9898
// There's not much we can do here but assume everything is supported.
9999
this.mcVersion = Integer.MAX_VALUE;
100100
MCLogger.log("Can't determine Microclimate version from dev build"); // $NON-NLS-1$

0 commit comments

Comments
 (0)