We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8df5ce commit 864fed1Copy full SHA for 864fed1
src/test/scala/com/typesafe/genjavadoc/BasicSpec.scala
@@ -21,7 +21,7 @@ class BasicSpec extends CompilerSpec {
21
if (new java.io.File(patchFile).exists) { // we have a patch to apply to expected output for this scala version
22
"rm -rf target/expected_output".! // cleanup from previous runs
23
"cp -r src/test/resources/expected_output target/".! // copy expected output to a place which is going to be patched
24
- s"patch -p0 -i $patchFile".! // path expected output
+ s"patch -p0 --no-backup-if-mismatch -i $patchFile".! // path expected output
25
"target/expected_output/basic"
26
} else {
27
"src/test/resources/expected_output/basic"
0 commit comments