assistant: Fix OSX bug that prevented committing changed files to a repository when in indirect mode.
This commit is contained in:
parent
1760a2e98c
commit
35a0ae334c
4 changed files with 11 additions and 3 deletions
|
@ -47,10 +47,10 @@ canWatch = False
|
|||
- OTOH, with kqueue, often only one event is received, indicating the most
|
||||
- recent state of the file. -}
|
||||
eventsCoalesce :: Bool
|
||||
#if (WITH_INOTIFY || WITH_FSEVENTS)
|
||||
#if WITH_INOTIFY
|
||||
eventsCoalesce = False
|
||||
#else
|
||||
#if WITH_KQUEUE
|
||||
#if (WITH_KQUEUE || WITH_FSEVENTS)
|
||||
eventsCoalesce = True
|
||||
#else
|
||||
eventsCoalesce = undefined
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue