Allow build on systems without git (#2514)
Set git revision to "unknown" if git not available.
This commit is contained in:
parent
0f1e95d0ca
commit
4159826f26
1 changed files with 7 additions and 3 deletions
|
@ -7,10 +7,14 @@ apply from: "../instance-build.gradle"
|
|||
|
||||
def getGitSha = {
|
||||
def stdout = new ByteArrayOutputStream()
|
||||
try {
|
||||
exec {
|
||||
commandLine 'git', 'rev-parse', '--short', 'HEAD'
|
||||
standardOutput = stdout
|
||||
}
|
||||
} catch (Exception e) {
|
||||
return "unknown"
|
||||
}
|
||||
return stdout.toString().trim()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue