We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12735a commit fbfd4f2Copy full SHA for fbfd4f2
src/watch.rs
@@ -74,7 +74,9 @@ fn run_watch(
74
75
let mut watcher = RecommendedWatcher::new(
76
notify_event_handler,
77
- Config::default().with_poll_interval(Duration::from_secs(1)),
+ Config::default()
78
+ .with_follow_symlinks(false)
79
+ .with_poll_interval(Duration::from_secs(1)),
80
)
81
.inspect_err(|_| eprintln!("{NOTIFY_ERR}"))?;
82
0 commit comments