Fix duplicate "apps" entry in help output (#2191)

## Changes

This is not needed because the command group is already returned by
`workspace.All()`.

The additional command registration was added in #1679.

## Tests

Acceptance test.
This commit is contained in:
Pieter Noordhuis 2025-01-20 17:02:29 +01:00 committed by GitHub
parent 395a04a8d1
commit 69f3c0a869
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 3 deletions

View File

@ -115,7 +115,6 @@ Marketplace
Apps Apps
apps Apps run directly on a customers Databricks instance, integrate with their data, use and extend Databricks services, and enable users to interact through single sign-on. apps Apps run directly on a customers Databricks instance, integrate with their data, use and extend Databricks services, and enable users to interact through single sign-on.
apps Apps run directly on a customers Databricks instance, integrate with their data, use and extend Databricks services, and enable users to interact through single sign-on.
Clean Rooms Clean Rooms
clean-room-assets Clean room assets are data and code objects — Tables, volumes, and notebooks that are shared with the clean room. clean-room-assets Clean room assets are data and code objects — Tables, volumes, and notebooks that are shared with the clean room.

View File

@ -15,7 +15,6 @@ import (
"github.com/databricks/cli/cmd/sync" "github.com/databricks/cli/cmd/sync"
"github.com/databricks/cli/cmd/version" "github.com/databricks/cli/cmd/version"
"github.com/databricks/cli/cmd/workspace" "github.com/databricks/cli/cmd/workspace"
"github.com/databricks/cli/cmd/workspace/apps"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
@ -68,7 +67,6 @@ func New(ctx context.Context) *cobra.Command {
// Add other subcommands. // Add other subcommands.
cli.AddCommand(api.New()) cli.AddCommand(api.New())
cli.AddCommand(apps.New())
cli.AddCommand(auth.New()) cli.AddCommand(auth.New())
cli.AddCommand(bundle.New()) cli.AddCommand(bundle.New())
cli.AddCommand(configure.New()) cli.AddCommand(configure.New())