Skip to content
Snippets Groups Projects
Commit a020448a authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Use """ in Build.scala to prevent issues with \ in windows paths

parent 85505865
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ object Leon extends Build {
val sourceGen = {
sourceGenerators in Compile += Def.task {
val libFiles = ((baseDirectory.value / "library") ** "*.scala").getPaths.mkString("List(\"", "\", \"", "\")")
val libFiles = ((baseDirectory.value / "library") ** "*.scala").getPaths.mkString("List(\"\"\"", "\"\"\", \"\"\"", "\"\"\")")
val build = (sourceManaged in Compile).value / "leon" / "Build.scala";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment