add a readme and update binaries

This commit is contained in:
Dominic Breuker
2018-02-13 22:39:45 +01:00
parent 4495ae7c96
commit f7d0089b1e
5 changed files with 65 additions and 2 deletions

View File

@@ -68,10 +68,10 @@ loop:
break loop
}
if err := in.Watch(dir); err != nil {
fmt.Fprintf(os.Stderr, "Can't create watcher: %v", err)
fmt.Fprintf(os.Stderr, "Can't create watcher: %v\n", err)
}
case err := <-errCh:
fmt.Fprintf(os.Stderr, "Error walking filesystem: %v", err)
fmt.Fprintf(os.Stderr, "Error walking filesystem: %v\n", err)
}
}
}