Skip to content

Commit

Permalink
Merge pull request #468 from tues/ticket/385
Browse files Browse the repository at this point in the history
Use -Xnojline option when starting console
  • Loading branch information
jvican authored May 3, 2018
2 parents cb38261 + 1500638 commit 548e42e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/main/scala/bloop/engine/tasks/Tasks.scala
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ object Tasks {
val loader = ClasspathUtilities.makeLoader(classpathFiles, scalaInstance)
val compiler = state.compilerCache.get(scalaInstance).scalac.asInstanceOf[AnalyzingCompiler]
val classpathOptions = ClasspathOptionsUtil.repl
compiler.console(classpathFiles, project.scalacOptions, classpathOptions, "", "", state.logger)(
val options = project.scalacOptions :+ "-Xnojline"
compiler.console(classpathFiles, options, classpathOptions, "", "", state.logger)(
Some(loader))
state
}
Expand Down

0 comments on commit 548e42e

Please sign in to comment.