Update vendor/

This commit is contained in:
Andrey Nering
2019-01-19 19:25:49 -02:00
parent 4f2a84b426
commit dfb804fe3f
10 changed files with 202 additions and 45 deletions

12
vendor/github.com/radovskyb/watcher/ishidden.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// +build !windows
package watcher
import (
"path/filepath"
"strings"
)
func isHiddenFile(path string) (bool, error) {
return strings.HasPrefix(filepath.Base(path), "."), nil
}