cleanup: remove git utils file as the functions moved to build file

This commit is contained in:
Rohit Verma 2025-05-25 22:16:53 +05:30
parent 3a36bdfa38
commit d9e050a502

View file

@ -1,26 +0,0 @@
ext.getBuildVersion = { ->
// Short-term fix for #1157. Should ideally look into why method is failing.
try {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git' , 'rev-parse' , '--short' , 'HEAD'
standardOutput = stdout
}
return stdout.toString().trim()
} catch (ignored) {
return null
}
}
ext.getBranchName = { ->
try {
def stdOut = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--abbrev-ref', 'HEAD'
standardOutput = stdOut
}
return stdOut.toString().trim()
} catch (ignored) {
return null
}
}