Restores error propagation from fsnotify.Watcher.Add.
This commit is contained in:
parent
669c44045e
commit
2e79377851
|
@ -153,7 +153,9 @@ func (shared *InotifyTracker) addWatch(winfo *watchInfo) error {
|
||||||
if shared.watchNums[fname] == 0 {
|
if shared.watchNums[fname] == 0 {
|
||||||
err = shared.watcher.Add(fname)
|
err = shared.watcher.Add(fname)
|
||||||
}
|
}
|
||||||
|
if err == nil {
|
||||||
shared.watchNums[fname]++
|
shared.watchNums[fname]++
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue