mirror of https://github.com/databricks/cli.git
This commit is contained in:
parent
d15ff75f3b
commit
e970a129af
|
@ -129,7 +129,6 @@ Additional Commands:
|
||||||
configure Configure authentication
|
configure Configure authentication
|
||||||
help Help about any command
|
help Help about any command
|
||||||
labs Manage Databricks Labs installations
|
labs Manage Databricks Labs installations
|
||||||
selftest Non functional CLI commands that are useful for testing
|
|
||||||
version Retrieve information about the current version of this CLI
|
version Retrieve information about the current version of this CLI
|
||||||
|
|
||||||
Flags:
|
Flags:
|
||||||
|
|
|
@ -6,8 +6,9 @@ import (
|
||||||
|
|
||||||
func New() *cobra.Command {
|
func New() *cobra.Command {
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "selftest",
|
Use: "selftest",
|
||||||
Short: "Non functional CLI commands that are useful for testing",
|
Short: "Non functional CLI commands that are useful for testing",
|
||||||
|
Hidden: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd.AddCommand(newChildCommand())
|
cmd.AddCommand(newChildCommand())
|
||||||
|
|
Loading…
Reference in New Issue