From: Anthony Fok Date: Thu, 16 Aug 2018 02:51:27 +0000 (-0600) Subject: Add configFile(s) back to the watch list after REMOVE event X-Git-Tag: v0.47~10 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=abc54080ec8c43e8989c081d934b59f0c9570c0b;p=brevno-suite%2Fhugo Add configFile(s) back to the watch list after REMOVE event Fixes #4701 --- diff --git a/commands/hugo.go b/commands/hugo.go index fc8dced7..a97c2829 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -705,6 +705,18 @@ func (c *commandeer) newWatcher(dirList ...string) (*watcher.Batcher, error) { if ev.Op&fsnotify.Chmod == fsnotify.Chmod { continue } + if ev.Op&fsnotify.Remove == fsnotify.Remove { + for _, configFile := range c.configFiles { + counter := 0 + for watcher.Add(configFile) != nil { + counter++ + if counter >= 100 { + break + } + time.Sleep(100 * time.Millisecond) + } + } + } // Config file changed. Need full rebuild. c.fullRebuild() break