Skip to content

Commit

Permalink
allow for default (empty) release type
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Robbins committed Jul 20, 2011
1 parent 86f2712 commit b778135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -288,6 +288,6 @@ class Version {
String releaseType String releaseType


String toString() { String toString() {
"$major.$minor-$releaseType${bugfix ?: ''}" "$major.$minor${releaseType ? '-'+releaseType : ''}${bugfix ?: ''}"
} }
} }

0 comments on commit b778135

Please sign in to comment.