Ignore .DS_Store changes (thumbnail cache file on mac)
authorSteve Francia <steve.francia@gmail.com>
Tue, 26 Jan 2016 19:10:18 +0000 (14:10 -0500)
committerSteve Francia <steve.francia@gmail.com>
Tue, 26 Jan 2016 19:33:51 +0000 (14:33 -0500)
commands/hugo.go

index 89a2f7ed5c5c12ff2537e45d3316467d68dd9675..35acbf29011a9653772c3c19453f3bf698843a3f 100644 (file)
@@ -658,7 +658,7 @@ func NewWatcher(port int) error {
 
                                for _, ev := range evs {
                                        ext := filepath.Ext(ev.Name)
-                                       istemp := strings.HasSuffix(ext, "~") || (ext == ".swp") || (ext == ".swx") || (ext == ".tmp") || strings.HasPrefix(ext, ".goutputstream") || strings.HasSuffix(ext, "jb_old___") || strings.HasSuffix(ext, "jb_bak___")
+                                       istemp := strings.HasSuffix(ext, "~") || (ext == ".swp") || (ext == ".swx") || (ext == ".tmp") || strings.HasPrefix(ext, ".goutputstream") || strings.HasSuffix(ext, "jb_old___") || strings.HasSuffix(ext, "jb_bak___") || (ext == ".DS_Store")
                                        if istemp {
                                                continue
                                        }