-
Notifications
You must be signed in to change notification settings - Fork 949
Closed
Labels
Description
steps
Method 1
- Go into an sbt 1.7.1 project directory
- Set
Global / onChangedBuildSource := ReloadOnSourceChanges
- run
sbt ~compile
- Edit build.sbt
Method 2 (simpler)
- Run
sbt ~compile
in an sbt 1.7.1 project directory - When you see
Press <enter> to interrupt or '?' for more options.
, hit theL
key
problem
SBT dutifully restarts, but it doesn't go back into ~compile. Instead it quits to the system shell.
expectation
In sbt 1.6.x it would run ~compile again
Note: it's not specific to compile
, the same thing seems to happen with any command.