Skip to content

Commit

Permalink
chore: fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Sep 18, 2024
1 parent 106141b commit a0dc597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template.go
Original file line number Diff line number Diff line change
Expand Up @@ -301,15 +301,15 @@ func goTemplate(ctx commonsContext.Context, template Template, environment map[s
data, err := Serialize(environment)
if err != nil {
return "", oops.
//With("environment", environment)
// With("environment", environment)
Wrapf(err, "error serializing env")
}

var buf bytes.Buffer
if err := tpl.Execute(&buf, data); err != nil {
return "", oops.
With("template", template.Template).
//With("environment", environment).
// With("environment", environment).
Wrap(err)
}

Expand Down

0 comments on commit a0dc597

Please sign in to comment.