1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 05:40:11 +01:00

Correct minor typo in check output message

This commit is contained in:
Bernhard Reiter 2022-04-21 17:16:18 +02:00
parent da7add89d6
commit 880122315d
No known key found for this signature in database
GPG key ID: 2B7BA3BF9BC3A554

View file

@ -857,7 +857,7 @@ func (p *processor) checkProviderMetadata(domain string) error {
for _, msg := range errors {
p.badProviderMetadata(strings.ReplaceAll(msg, `%`, `%%`))
}
p.badProviderMetadata("STOPPING here - cannot perfom other checks.")
p.badProviderMetadata("STOPPING here - cannot perform other checks.")
return errStop
}
p.pmdURL = url
@ -870,7 +870,7 @@ func (p *processor) checkProviderMetadata(domain string) error {
if p.pmdURL == "" {
p.badProviderMetadata("No provider-metadata.json found.")
p.badProviderMetadata("STOPPING here - cannot perfom other checks.")
p.badProviderMetadata("STOPPING here - cannot perform other checks.")
return errStop
}
return nil