From 5e4b1f51b357c20acd6ca329907b1524055838c6 Mon Sep 17 00:00:00 2001 From: Michal Date: Fri, 29 Sep 2023 11:01:07 +0200 Subject: [PATCH] Update internal/cmd/stack/stack_selector.go Co-authored-by: Tomas <40318863+tomasmik@users.noreply.github.com> --- internal/cmd/stack/stack_selector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/stack/stack_selector.go b/internal/cmd/stack/stack_selector.go index e38dbc0..e0f7278 100644 --- a/internal/cmd/stack/stack_selector.go +++ b/internal/cmd/stack/stack_selector.go @@ -75,7 +75,7 @@ func stackExists(ctx context.Context, stackId string) error { err := authenticated.Client.Query(ctx, &query, variables) if err != nil { - return fmt.Errorf("failed to query GraphQL API: %w", err) + return fmt.Errorf("failed to query GraphQL API when checking if a stack exists: %w", err) } if query.Stack.ID == "" {