Merge pull request #1 in LWC/locusworks-commons from hotfix/releasename to develop

* commit 'f930016ecde64b6e155f03c6ee9d89410228b9f2':
  Fixed issue with release name
This commit is contained in:
Isaac Parenteau
2019-07-21 06:45:50 +00:00

2
Jenkinsfile vendored
View File

@ -162,7 +162,7 @@ def SetVersion( v ) {
// for release branches, where the branch is named "release/1.2.3",
// derive the version and display name derive from the numeric suffix and append the build number
// 3.2.1.100
version = branch_name_base + "." + build_number
version = branch_name_base + "." + build_number + "-RELEASE";
//version = branch_name.substring('release/'.length()) + "." + build_number
currentBuild.displayName = version
}