diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-28 16:05:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-28 16:05:33 -0400 |
commit | c8fdc4272917bd0c6836d41a2aead6dc78794e39 (patch) | |
tree | c46039bc9861a0dad99943757148e0e8fea804c2 /Utility/FSEvents.hs | |
parent | f8c1b3c52cf218a11eb98cfec0efd2bf647da01e (diff) |
ignore events generated by us in fsevents
This avoids some churn.
Diffstat (limited to 'Utility/FSEvents.hs')
-rw-r--r-- | Utility/FSEvents.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/FSEvents.hs b/Utility/FSEvents.hs index 8fd676d9e..fc5dc0a7a 100644 --- a/Utility/FSEvents.hs +++ b/Utility/FSEvents.hs @@ -19,7 +19,7 @@ watchDir dir ignored hooks = do unlessM fileLevelEventsSupported $ error "Need at least OSX 10.7.0 for file-level FSEvents" scan dir - eventStreamCreate [dir] 1.0 True False True handle + eventStreamCreate [dir] 1.0 True True True handle where handle evt | ignoredPath ignored (eventPath evt) = noop |