Skip to content

Commit

Permalink
[#136] Current builds are always using the last tag
Browse files Browse the repository at this point in the history
  • Loading branch information
pjeli authored Sep 14, 2018
1 parent 3a16e7c commit 106a1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ext {
}

versioning {
full = { scmInfo -> ("${scmInfo.lastTag}" == "null" ? "1.2." : "${scmInfo.lastTag}.") + hadoopVersion }
full = { scmInfo -> ("${scmInfo.tag}" == "null" ? "${scmInfo.lastTag}." : "${scmInfo.tag}.") + hadoopVersion }
dirty = { version -> "${version}" }
}

Expand Down

0 comments on commit 106a1d3

Please sign in to comment.