fix: hide dotfile error on share
This commit is contained in:
parent
22f4be8f54
commit
5f4a0317ab
|
@ -22,7 +22,7 @@ type Rule struct {
|
||||||
// MatchHidden matches paths with a basename
|
// MatchHidden matches paths with a basename
|
||||||
// that begins with a dot.
|
// that begins with a dot.
|
||||||
func MatchHidden(path string) bool {
|
func MatchHidden(path string) bool {
|
||||||
return strings.HasPrefix(filepath.Base(path), ".")
|
return path != "" && strings.HasPrefix(filepath.Base(path), ".")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Matches matches a path against a rule.
|
// Matches matches a path against a rule.
|
||||||
|
|
Loading…
Reference in New Issue