Skip to content

Commit

Permalink
feat: Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
0michalsokolowski0 committed Aug 26, 2024
1 parent 2e31e31 commit 58d175c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cmd/stack/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func (e *configElement) toConfigElementOutput(contextName *string) (listEnvEleme

if err != nil {
message := fmt.Sprintf("failed to decode base64-encoded file with id %s", e.ID)
return listEnvElementOutput{}, errors.Wrapf(err, message)
return listEnvElementOutput{}, errors.Wrap(err, message)
}

stringValue := string(result)
Expand Down

0 comments on commit 58d175c

Please sign in to comment.