-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Description
steps
- Unzip the project. It contains an additional sbt file in the
tempdirectory. - Open the terminal inside the project root.
- Execute
sbt --addPluginSbtFile=temp/file.sbt
Expected result: the sbt starts
Actual result: the sbt fails with error message:
java.lang.RuntimeException: Invalid build URI (no handler available): file:~/bug2Projects/c1/project/
at scala.sys.package$.error(package.scala:30)
at sbt.internal.Load$.$anonfun$builtinLoader$1(Load.scala:490)
at sbt.internal.BuildLoader.$anonfun$apply$3(BuildLoader.scala:245)
at scala.Option.getOrElse(Option.scala:189)
at sbt.internal.BuildLoader.apply(BuildLoader.scala:245)
at sbt.internal.Load$.loadURI$1(Load.scala:555)
at sbt.internal.Load$.loadAll(Load.scala:571)
at sbt.internal.Load$.loadURI(Load.scala:501)
at sbt.internal.Load$.load(Load.scala:480)
- Create an empty
projectfolder inside thec1directory. - Repeat step 3.
Expected & actual result: the sbt starts
problem
It seems that the absence of a project directory inside the nested build causes sbt to fail.
Reactions are currently unavailable