Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/root/auth.go
Original file line numberDiff line numberDiff line change
Expand Up@@ -65,7 +65,7 @@ func accountClientOrPrompt(ctx context.Context, cfg *config.Config, allowPrompt
return nil, err
}
}
return a, nil
return a, err
}

func MustAccountClient(cmd *cobra.Command, args []string) error {
Expand DownExpand Up@@ -133,7 +133,7 @@ func workspaceClientOrPrompt(ctx context.Context, cfg *config.Config, allowPromp
return nil, err
}
}
return w, nil
return w, err
}

func MustWorkspaceClient(cmd *cobra.Command, args []string) error {
Expand Down