You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when the directory of a project contains a colon, sbt fails to start:
[info] Done updating.
[info] Compiling 1 Scala source to /home/<censored>/http4s:http4s/project/target/scala-2.10/sbt-0.13/classes...
/home/<censored>/http4s:http4s/build.sbt:1: error: not found: object Http4sDependencies
import Http4sDependencies._
^
sbt.compiler.EvalException: Type error in expression
at sbt.compiler.Eval.checkError(Eval.scala:343)
at sbt.compiler.Eval.compileAndLoad(Eval.scala:165)
at sbt.compiler.Eval.evalCommon(Eval.scala:135)
at sbt.compiler.Eval.evalDefinitions(Eval.scala:109)
at sbt.EvaluateConfigurations$.evaluateDefinitions(EvaluateConfigurations.scala:125)
at sbt.EvaluateConfigurations$.evaluateSbtFile(EvaluateConfigurations.scala:48)
at sbt.Load$.sbt$Load$$loadSettingsFile$1(Load.scala:502)
The text was updated successfully, but these errors were encountered:
… separator. Fixes#1038.
This is an attempt to provide a decent error message in some cases. However, paths that include
the Java path separator character are just fundamentally problematic and aren't always going to
be cleanly detected.
when the directory of a project contains a colon, sbt fails to start:
The text was updated successfully, but these errors were encountered: