Skip to content

Commit 4963420

Browse files
author
Douglas Stephen
committed
Merge pull request #109 in ROB/ihmc-open-robotics-software from disable-branch-check-for-support-branch-releases to 0.9-support
* commit '1ea2db0b43db70222475e58674eee533cf945411': Don't do branch checking when performing a release on this support branch.
2 parents 09ee7c1 + 1ea2db0 commit 4963420

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ if (buildType.equals("RC")) {
3939
project.ext.fullVersion = version += "-RC${project.ext.releaseCandidateCounter}.rev.${repo.head().abbreviatedId}"
4040
}
4141

42-
if (buildType.equals("RELEASE")) {
43-
if (!project.ext.repo.branch.current.name.equals("master")) {
44-
throw new GradleException("Cannot make RELEASE build from branch \"${project.ext.repo.branch.current.name}\", it is not the branch used for stable releases!")
45-
}
46-
}
42+
// if (buildType.equals("RELEASE")) {
43+
// if (!project.ext.repo.branch.current.name.equals("master")) {
44+
// throw new GradleException("Cannot make RELEASE build from branch \"${project.ext.repo.branch.current.name}\", it is not the branch used for stable releases!")
45+
// }
46+
// }
4747

4848
repositories {
4949
mavenLocal()

0 commit comments

Comments
 (0)