Skip to content

Commit

Permalink
Fixing wrong var name in Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
AnHeuermann committed Oct 30, 2020
1 parent 9bda18a commit d87e8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmi-cross-check/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def getOMSVersion(omsCall) {
String omsVersionShort = omsVersion
String omsBuildNumber = "0"
if (omsVersionShort.contains("post")) {
(omsVersionShort, omsBuildNumber) = version.split(".post")
(omsVersionShort, omsBuildNumber) = omsVersion.split(".post")
omsBuildNumber = omsVersionShort + "-" + omsBuildNumber.split("-")[0]
omsVersionShort = omsVersionShort[0..-1]
}
Expand Down

0 comments on commit d87e8e3

Please sign in to comment.