Skip to content

Commit ce60635

Browse files
committed
thanks peter
1 parent e5f5108 commit ce60635

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

thirdparty/catch2/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ task generateCatchUserConfig() {
2626
}
2727

2828
def read = catch2UserConfigInput.text
29-
read.replace('${CATCH_CONFIG_DEFAULT_REPORTER}', "console")
30-
read.replace('${CATCH_CONFIG_CONSOLE_WIDTH}', "80")
31-
read.replaceAll("#cmakedefine", "#define")
29+
read = read.replace('${CATCH_CONFIG_DEFAULT_REPORTER}', "console")
30+
read = read.replace('${CATCH_CONFIG_CONSOLE_WIDTH}', "80")
31+
read = read.replaceAll("#cmakedefine", "#define")
3232

3333
catch2UserConfigOutput.write(read)
3434
}

0 commit comments

Comments
 (0)