Skip to content

Commit

Permalink
Fixed automatic versioning based on git describe
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgruter committed Apr 14, 2014
1 parent a93ce4c commit f81ff92
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 @@ -23,7 +23,7 @@ task wrapper(type: Wrapper) {
def getVersionName() {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--tags', '--long'
commandLine 'git', 'describe', '--tags'
standardOutput = stdout
}
return stdout.toString().trim()
Expand Down

0 comments on commit f81ff92

Please sign in to comment.