mirror of https://github.com/databricks/cli.git
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:
parent
395a04a8d1
commit
69f3c0a869
|
@ -115,7 +115,6 @@ Marketplace
|
||||||
|
|
||||||
Apps
|
Apps
|
||||||
apps Apps run directly on a customer’s 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 customer’s 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 customer’s 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.
|
||||||
|
|
|
@ -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())
|
||||||
|
|
Loading…
Reference in New Issue