Increase git hash from 7 back to 8 characters. Clearer comments

This commit is contained in:
mcc 2023-02-10 15:33:53 -05:00
parent fe8ed9f331
commit b3db7b91af
1 changed files with 3 additions and 3 deletions

View File

@ -5,14 +5,14 @@ plugins {
alias(libs.plugins.kotlin.parcelize) alias(libs.plugins.kotlin.parcelize)
} }
// For constructing gitSha // For constructing gitSha only
def getGitSha = { def getGitSha = {
try { try {
providers.exec { providers.exec {
commandLine 'git', 'rev-parse', '--short=7', 'HEAD' commandLine 'git', 'rev-parse', 'HEAD'
}.standardOutput.asText.get().trim() }.standardOutput.asText.get().trim()
} catch (Exception e) { } catch (Exception e) {
"unknown" "unknown" // Try-catch is necessary for build to work on non-git distributions
} }
} }