We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5f5108 commit ce60635Copy full SHA for ce60635
thirdparty/catch2/build.gradle
@@ -26,9 +26,9 @@ task generateCatchUserConfig() {
26
}
27
28
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")
+ read = read.replace('${CATCH_CONFIG_DEFAULT_REPORTER}', "console")
+ read = read.replace('${CATCH_CONFIG_CONSOLE_WIDTH}', "80")
+ read = read.replaceAll("#cmakedefine", "#define")
32
33
catch2UserConfigOutput.write(read)
34
0 commit comments