From 21ff71ceea0dc1b03747e11ad73fa77cf4ff18e1 Mon Sep 17 00:00:00 2001 From: shreyas-goenka <88374338+shreyas-goenka@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:38:43 +0200 Subject: [PATCH] Add documentation link bundle command group description (#770) Help output: ``` shreyas.goenka@THW32HFW6T ~ % cli bundle -h Databricks Asset Bundles. Documentation URL: https://docs.databricks.com/en/dev-tools/bundles. Usage: databricks bundle [command] ``` --------- Co-authored-by: Pieter Noordhuis --- cmd/bundle/bundle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bundle/bundle.go b/cmd/bundle/bundle.go index c933ec9c..d8382d17 100644 --- a/cmd/bundle/bundle.go +++ b/cmd/bundle/bundle.go @@ -7,7 +7,7 @@ import ( func New() *cobra.Command { cmd := &cobra.Command{ Use: "bundle", - Short: "Databricks Asset Bundles", + Short: "Databricks Asset Bundles\n\nOnline documentation: https://docs.databricks.com/en/dev-tools/bundles", } initVariableFlag(cmd)