Skip to content

Commit

Permalink
bugfix: Prioritize displaying the versions of project, session, and g…
Browse files Browse the repository at this point in the history
…lobal records when using `current` command.

fix #61
  • Loading branch information
aooohan committed Mar 1, 2024
1 parent 22e9e0d commit 65838e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/commands/current.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var Current = &cli.Command{
}

func currentCmd(ctx *cli.Context) error {
manager := internal.NewSdkManager()
manager := internal.NewSdkManager(internal.GlobalRecordSource, internal.SessionRecordSource, internal.ProjectRecordSource)
defer manager.Close()
sdkName := ctx.Args().First()
if sdkName == "" {
Expand Down

0 comments on commit 65838e8

Please sign in to comment.