Skip to content

Commit

Permalink
Merge pull request #243 from llxia/test2
Browse files Browse the repository at this point in the history
Fix split()
  • Loading branch information
jdekonin authored Jul 23, 2024
2 parents 816e3e2 + 2c8353d commit beedfcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ class Build {
def rerunIterations = '3'
def fipsTestBuildSuffix = "";
if ("${testType}".contains(".fips")) {
String[] tokens = testType.split('.')
String[] tokens = testType.split('\\.')
testType = tokens[0] + "." + tokens[1]
fipsTestBuildSuffix = tokens[2]
rerunIterations = '0'
Expand Down

0 comments on commit beedfcb

Please sign in to comment.