build: fix linter install on windows (#24523)

This commit is contained in:
ligi
2022-03-15 10:24:45 +01:00
committed by GitHub
parent fb2ae8e995
commit a6bf2487d1
2 changed files with 9 additions and 4 deletions

View File

@ -58,7 +58,7 @@ func (db *ChecksumDB) Verify(path string) error {
}
fileHash := hex.EncodeToString(h.Sum(nil))
if !db.findHash(filepath.Base(path), fileHash) {
return fmt.Errorf("invalid file hash %s", fileHash)
return fmt.Errorf("invalid file hash %s for %s", fileHash, filepath.Base(path))
}
return nil
}