File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
runner/daemon/src/mill/daemon Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ package mill.api
88 */
99private [mill] sealed trait Watchable
1010private [mill] object Watchable {
11+
1112 /** A [[Watchable ]] that is being watched via polling. */
1213 private [mill] sealed trait Pollable extends Watchable
1314
Original file line number Diff line number Diff line change @@ -357,7 +357,10 @@ object MillMain {
357357 if (config.watch.value) os.remove(out / OutFiles .millSelectiveExecution)
358358 Watching .watchLoop(
359359 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+ )),
361364 streams = streams,
362365 evaluate = (enterKeyPressed : Boolean , prevState : Option [RunnerState ]) => {
363366 adjustJvmProperties(userSpecifiedProperties, initialSystemProperties)
You can’t perform that action at this time.
0 commit comments