Skip to content

Commit db20096

Browse files
committed
Fix build issues-6
1 parent 7838d02 commit db20096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/scorecard/scorecard.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func getPlugins(version string, selector labels.Selector) ([]Plugin, error) {
7171
configs := []pluginConfig{}
7272
// set ErrorUnused to true in decoder to fail if an unknown field is set by the user
7373
if err := scViper.UnmarshalKey("plugins", &configs, func(c *mapstructure.DecoderConfig) { c.ErrorUnused = true }); err != nil {
74-
return nil, fmt.Errorf("Could not load plugin configurations: %w", err)
74+
return nil, fmt.Errorf("could not load plugin configurations: %w", err)
7575
}
7676
for idx, plugin := range configs {
7777
if err := validateConfig(plugin, idx, version); err != nil {

0 commit comments

Comments
 (0)