Putting the finishing touches on my dev environment with libgdx and Scala SBT, I'm trying to make control-c kill the running process but not SBT itself. Here is the scenario:
- load sbt into the interactice prompt
- while in the interactive prompt, invoke the game using the following libgdx style syntax:
> desktop/run
This loads my game and spawns the screen. However, when I press control-C, not only is the game stopped, but SBT exits as well.
How can I have SBT exit the currently running process but keep the interactive sbt build shell running?
Thanks!