Ignore hidden files

This commit is contained in:
2022-12-15 12:17:04 +01:00
parent f081b97beb
commit 760decfb85
2 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ func link(from, to string) chan struct{} {
w := watcher.New()
w.SetMaxEvents(1)
w.FilterOps(watcher.Write, watcher.Rename, watcher.Move, watcher.Create, watcher.Remove)
w.IgnoreHiddenFiles(true)
if err := w.AddRecursive(from); err != nil {
fmt.Println(err.Error())