Skip to content

Commit 14b94ef

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/improvement/fs-watching' into improvement/fs-watching
2 parents 895c077 + 51cbab5 commit 14b94ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

runner/daemon/src/mill/daemon/MillCliConfig.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ case class MillCliConfig(
9999
watch: Flag = Flag(),
100100
@arg(
101101
name = "watch-via-fs-notify",
102-
doc = "Use filesystem based file watching instead of polling based one (defaults to true).",
102+
doc = "Use filesystem based file watching instead of polling based one (defaults to true)."
103103
)
104104
watchViaFsNotify: Boolean = true,
105105
@arg(

runner/daemon/src/mill/daemon/MillMain.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,8 @@ object MillMain {
352352
ringBell = config.ringBell.value,
353353
watch = Option.when(config.watch.value)(Watching.WatchArgs(
354354
setIdle = setIdle,
355-
colors,
356-
useNotify = config.watchViaFsNotify,
355+
colors,
356+
useNotify = config.watchViaFsNotify,
357357
serverDir = serverDir
358358
)),
359359
streams = streams,

0 commit comments

Comments
 (0)