This commit is contained in:
Shreyas Goenka 2025-02-17 19:26:06 +01:00
parent d15ff75f3b
commit e970a129af
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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())