I want to execute "sbt ~test" as a build system. This is my build system:
- Code: Select all
{
"shell": true,
"cmd": ["sbt", "~test"],
"working_dir": "$project_path"
}
(the "~test" lets sbt compile and test the whole project each time a file is changed, so the build actually never finishes automatically)
My problem is now, that when I cancel the Build in Sublime, the console says "[Cancelled]", but in the background sbt keeps running and the only way to stop is killing the java.exe in the task manager.