I cannot fork my sbt
process using sbt run &
. When I do so, I return to bash console, and I get a PID, but soon, the process stops.
In my build.sbt
I have added the line Keys.fork in run := true
but that doesn't do anything.
What is that?
I cannot fork my sbt
process using sbt run &
. When I do so, I return to bash console, and I get a PID, but soon, the process stops.
In my build.sbt
I have added the line Keys.fork in run := true
but that doesn't do anything.
What is that?
I don't believe you need to restrict to run
. Try just
fork := true