Skip to content

Commit bc283d0

Browse files
author
githubnemo
committed
Document solution for #23
1 parent a695c46 commit bc283d0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,17 @@ If you want to monitor files other than .go and .c files you might…
6363

6464
$ CompileDaemon -include=Makefile -include="*.less" -include="*.tmpl"
6565

66-
## Notes
66+
## Common Issues
6767

6868
### Too many open files
6969

7070
If you get an error for too many open files, you might wish to exclude your .git, .hg, or similar VCS directories using `-exclude-dir=…`. This is common on OS X and BSD platforms where each watched file consumes a file descriptor.
7171

7272
If you still have too many open files, then you need to raise your process's file limit using the `ulimit` command. Something like `ulimit -n 1024` will probably take care of it. There is also a sysctl based limit which you may reach and need to adjust.
7373

74+
### `filepath.Walk() no space left on device`
75+
76+
As described in [this issue](https://github.com/githubnemo/CompileDaemon/issues/23) it might happen that you run out of inotify watchers which are limited by your system configuration. Please consider increasing them as is documented [here](https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers).
7477

7578
## Project Details
7679

0 commit comments

Comments
 (0)