Clean up var name

This commit is contained in:
Jim Nicholson 2024-02-01 04:23:11 -08:00
parent 7a8a13805f
commit 477bdf6131

View File

@ -8,9 +8,9 @@ String call(Map config = [:]) {
checkout scm
GIT_TAG = sh(
gitTag = sh(
script: "git describe --tags --always --dirty=${runConfig.dirtyFlag}",
returnStdout: true
).trim()
return GIT_TAG
return gitTag
}