File tree 1 file changed +3
-3
lines changed
sbt-test/sbt-bridge/zinc-13-compat
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ lazy val root = project.in(file("."))
42
42
|object Scala3 {
43
43
| val version = " $scala3Version"
44
44
| val allJars = Array(
45
- | ${allJars.map(jar => s """ new File(" ${jar.getAbsolutePath}") """ ).mkString(" ,\n " )}
45
+ | ${allJars.map(jar => s """ new File(" ${jar.getAbsolutePath.replace( " \\ " , " \\\\ " ) }") """ ).mkString(" ,\n " )}
46
46
| )
47
47
| val compilerJar = new File(" $compilerJar")
48
48
| val libraryJars = Array(
@@ -64,8 +64,8 @@ lazy val root = project.in(file("."))
64
64
|import java.io.File
65
65
|
66
66
|object Input {
67
- | val outputFile = new File(" ${output.getAbsolutePath}")
68
- | val sources = Array(new File(" ${sourceFile.getAbsolutePath}"))
67
+ | val outputFile = new File(" ${output.getAbsolutePath.replace( " \\ " , " \\\\ " ) }")
68
+ | val sources = Array(new File(" ${sourceFile.getAbsolutePath.replace( " \\ " , " \\\\ " ) }"))
69
69
|}
70
70
| """ .stripMargin
71
71
)
You can’t perform that action at this time.
0 commit comments