Browse Source

Merge branch 'cleanup-3.2.x' into 3.2.x

* cleanup-3.2.x:
  Use unmodified 'version' when not on a topic branch
pull/213/head
Chris Beams 12 years ago
parent
commit
0e8e9981f5
  1. 3
      build.gradle

3
build.gradle

@ -967,7 +967,8 @@ def qualifyVersionIfNecessary(version) { @@ -967,7 +967,8 @@ def qualifyVersionIfNecessary(version) {
if (rootProject.hasProperty("BRANCH_NAME")) {
def qualifier = rootProject.getProperty("BRANCH_NAME")
if (qualifier.startsWith("SPR-")) {
version = version.replace('BUILD', qualifier)
return version.replace('BUILD', qualifier)
}
}
return version
}

Loading…
Cancel
Save