Skip to content

Commit

Permalink
chore: dont capitlize errors
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Wasilewski <michal@mwasilewski.net>
  • Loading branch information
mwasilew2 committed Sep 29, 2023
1 parent 9abd652 commit bdda805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cmd/stack/stack_selector.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func getStackID(cliCtx *cli.Context) (string, error) {
return "", fmt.Errorf("failed to check if stack exists: %w", err)
}
if !exists {
return "", fmt.Errorf("Stack with id %q could not be found. Please check that the stack exists and that you have access to it. To list available stacks run: spacectl stack list", stackID)
return "", fmt.Errorf("stack with id %q could not be found. Please check that the stack exists and that you have access to it. To list available stacks run: spacectl stack list", stackID)
}
return stackID, nil
}
Expand Down

0 comments on commit bdda805

Please sign in to comment.