Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ task testLarsPackage(type: JavaExec) {

doLast {
String errorString = errorOutput.toString()
if (!(errorString =~ /The directory .*${badDirName} is not a valid installation./)) {
if (!((errorString =~ /The directory .*${badDirName} is not a valid installation./) || (errorString =~ /The directory .*${badDirName} is not a valid Liberty install directory./))) {
throw new GradleException("The expected output from the command was not seen. Actual output was: '${errorString}'"
+ "\nAnd stdout was: '" + standardOutput + "'")
}
Expand Down