diff options
author | Adam Mathes <adam@trenchant.org> | 2018-02-18 09:59:00 -0800 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2018-02-18 09:59:00 -0800 |
commit | 8d39f2652cf8c511b039d8d6cc73ceff135a2d99 (patch) | |
tree | fff8b75b7c6beeab28950dfae0495d5cd5b46948 | |
parent | 9989337b3f760267f40bfe67a501eed3de012417 (diff) | |
download | snkt-0.1.tar.gz snkt-0.1.tar.bz2 snkt-0.1.zip |
watch for all events except chmod and rebuild to handle file creation/rename/deletionv0.1
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ func watchSite() { for { select { case event := <-watcher.Events: - if event.Op&fsnotify.Write == fsnotify.Write { + if event.Op&fsnotify.Write != fsnotify.Chmod { fmt.Printf("rebuilding... ") buildSite() fmt.Printf("done\n") |