File tree 2 files changed +5
-1
lines changed
runner/daemon/src/mill/daemon
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ package mill.api
8
8
*/
9
9
private [mill] sealed trait Watchable
10
10
private [mill] object Watchable {
11
+
11
12
/** A [[Watchable ]] that is being watched via polling. */
12
13
private [mill] sealed trait Pollable extends Watchable
13
14
Original file line number Diff line number Diff line change @@ -357,7 +357,10 @@ object MillMain {
357
357
if (config.watch.value) os.remove(out / OutFiles .millSelectiveExecution)
358
358
Watching .watchLoop(
359
359
ringBell = config.ringBell.value,
360
- watch = Option .when(config.watch.value)(Watching .WatchArgs (setIdle = setIdle, colors)),
360
+ watch = Option .when(config.watch.value)(Watching .WatchArgs (
361
+ setIdle = setIdle,
362
+ colors
363
+ )),
361
364
streams = streams,
362
365
evaluate = (enterKeyPressed : Boolean , prevState : Option [RunnerState ]) => {
363
366
adjustJvmProperties(userSpecifiedProperties, initialSystemProperties)
You can’t perform that action at this time.
0 commit comments