1
0
Fork 0
mirror of https://github.com/gohugoio/hugo.git synced 2025-03-26 09:53:38 +00:00

Rename WatchIgnoreFiles to IgnoreFiles

Because this isn't just about server and watching.

See 
This commit is contained in:
bep 2015-06-03 13:45:52 +02:00
parent bed227886b
commit bec3f40359

View file

@ -148,7 +148,7 @@ func isNonProcessablePath(filePath string) bool {
return true
}
ignoreFiles := viper.GetStringSlice("WatchIgnoreFiles")
ignoreFiles := viper.GetStringSlice("IgnoreFiles")
if len(ignoreFiles) > 0 {
for _, ignorePattern := range ignoreFiles {
match, _ := regexp.MatchString(ignorePattern, filePath)