Skip to content

Instantly share code, notes, and snippets.

@mtrung
Created May 20, 2015 16:29
Show Gist options
  • Save mtrung/63f904f96d41a9363bd4 to your computer and use it in GitHub Desktop.
Save mtrung/63f904f96d41a9363bd4 to your computer and use it in GitHub Desktop.
getVersionCode
def getVersionCode = { ->
try {
def code = new ByteArrayOutputStream()
exec {
commandLine "git", "rev-list", "HEAD", "--count"
standardOutput = code
}
return code.toString().toInteger()
}
catch (ignored) {
return -1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment