Update godep in vendor

This commit is contained in:
Christoph Blecker
2018-04-02 12:57:41 -07:00
parent ba71e6307a
commit 0828b19996
21 changed files with 70 additions and 133 deletions

View File

@@ -51,7 +51,7 @@ func IsLegalFile(filename string) bool {
}
}
for _, substring := range LegalFileSubstring {
if strings.Index(lowerfile, substring) != -1 {
if strings.Contains(lowerfile, substring) {
return true
}
}