Skip to content

Commit

Permalink
chore(postprocessor): fix missing format specifier (#8112)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz authored Jun 15, 2023
1 parent 28aa098 commit 20573e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/postprocessor/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (p *postProcessor) Manifest() (map[string]ManifestEntry, error) {

apiShortname, err := apiShortname(yamlConfig.NameFull)
if err != nil {
return nil, fmt.Errorf("unable to determine api_shortname from %v", yamlConfig.NameFull, err)
return nil, fmt.Errorf("unable to determine api_shortname from %v: %v", yamlConfig.NameFull, err)
}

entry := ManifestEntry{
Expand Down

0 comments on commit 20573e2

Please sign in to comment.