Skip to content

Commit

Permalink
fix(ci): fix govet error (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptubic authored Aug 19, 2024
1 parent 8a1eb5d commit 1baf8ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sysdig/cfn_preprocess_template.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func updateKeys(inputMap gabs.Container) error {

err = inputMap.Delete(key)
if err != nil {
return fmt.Errorf("failed to delete old key %s" + key)
return fmt.Errorf("failed to delete old key %s", key)
}

// recurse to update child's keys
Expand Down

0 comments on commit 1baf8ce

Please sign in to comment.