Skip to content

Commit

Permalink
chore(module-versions): Use searchModuleVersions instead of versions …
Browse files Browse the repository at this point in the history
…when fetching module versions
  • Loading branch information
0michalsokolowski0 committed Sep 13, 2024
1 parent e868dcc commit 93f91ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/cmd/profile/login_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ func getCredentialsType(ctx *cli.Context) (session.CredentialsType, error) {
return 0, err
}

return session.CredentialsType(result + 1), nil //nolint: gosec
//nolint: gosec
return session.CredentialsType(result + 1), nil
}

func readEndpoint(ctx *cli.Context, reader *bufio.Reader) (string, error) {
Expand Down

0 comments on commit 93f91ff

Please sign in to comment.