Make configure command visible + fix bundle command description (#961)

## Changes
Fixes #936 #937
This commit is contained in:
Andrew Nester 2023-11-08 08:33:40 +01:00 committed by GitHub
parent 10291b0e13
commit f07832746b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,8 @@ import (
func New() *cobra.Command {
cmd := &cobra.Command{
Use: "bundle",
Short: "Databricks Asset Bundles\n\nOnline documentation: https://docs.databricks.com/en/dev-tools/bundles",
Short: "Databricks Asset Bundles",
Long: "Databricks Asset Bundles\n\nOnline documentation: https://docs.databricks.com/en/dev-tools/bundles",
}
initVariableFlag(cmd)

View File

@ -123,7 +123,6 @@ func newConfigureCommand() *cobra.Command {
If this command is invoked in non-interactive mode, it will read the token from stdin.
The host must be specified with the --host flag.
`,
Hidden: true,
}
cmd.Flags().String("host", "", "Databricks workspace host.")