From bec3f40359f076b966ede15cb967e2f3873a74b4 Mon Sep 17 00:00:00 2001 From: bep Date: Wed, 3 Jun 2015 13:45:52 +0200 Subject: [PATCH] Rename WatchIgnoreFiles to IgnoreFiles Because this isn't just about server and watching. See #1189 --- source/filesystem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/filesystem.go b/source/filesystem.go index 4565c7f48..7242d1dfc 100644 --- a/source/filesystem.go +++ b/source/filesystem.go @@ -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)