aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 17:26:10 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 17:26:10 +0200
commitd7c44086cc34eee7991753fc2ea284bdefed9670 (patch)
treef1b3461a042df1b7c65628ae57d7c1a613718cb8 /project
parent9f80c0d2e87819f183cf54028824bd338d780dcd (diff)
downloaddotty-d7c44086cc34eee7991753fc2ea284bdefed9670.tar.gz
dotty-d7c44086cc34eee7991753fc2ea284bdefed9670.tar.bz2
dotty-d7c44086cc34eee7991753fc2ea284bdefed9670.zip
Add spaces around + in dotty source.
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/project/Build.scala b/project/Build.scala
index b3a1548d6..5adc69d26 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -110,7 +110,7 @@ object DottyBuild extends Build {
file <- attList.map(_.data)
path = file.getAbsolutePath
prefix = if(path.endsWith(".jar")) "p" else "a"
- } yield "-Xbootclasspath/"+ prefix +":" + path
+ } yield "-Xbootclasspath/" + prefix + ":" + path
// dotty itself needs to be in the bootclasspath
val fullpath = ("-Xbootclasspath/a:" + bin) :: path.toList
// System.err.println("BOOTPATH: " + fullpath)
@@ -121,7 +121,7 @@ object DottyBuild extends Build {
else
List()
val res = agentOptions ::: travis_build ::: fullpath
- println("Running with javaOptions: " +res)
+ println("Running with javaOptions: " + res)
res
}
)