From 58d175c373d2f8ce9c1823af9e9b5007ba261e85 Mon Sep 17 00:00:00 2001 From: Michal Sokolowski <0michalsokolowski0@gmail.com> Date: Mon, 26 Aug 2024 12:29:41 +0200 Subject: [PATCH] feat: Fix linter issue --- internal/cmd/stack/environment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/stack/environment.go b/internal/cmd/stack/environment.go index 2c80f82..b352eef 100644 --- a/internal/cmd/stack/environment.go +++ b/internal/cmd/stack/environment.go @@ -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)