From d9b5f5e18565257a3ac9655e0d12c2a794c07347 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 11 Mar 2025 12:51:01 +0100 Subject: [PATCH] fix build --- cmd/bundle/exec.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/bundle/exec.go b/cmd/bundle/exec.go index d781ee493..023ea3395 100644 --- a/cmd/bundle/exec.go +++ b/cmd/bundle/exec.go @@ -9,6 +9,7 @@ import ( "github.com/databricks/cli/cmd/root" "github.com/databricks/cli/libs/auth" + "github.com/databricks/cli/libs/command" "github.com/spf13/cobra" ) @@ -39,7 +40,7 @@ Example usage: childCmd := exec.Command(args[0], args[1:]...) - env := auth.ProcessEnv(root.ConfigUsed(cmd.Context())) + env := auth.ProcessEnv(command.ConfigUsed(cmd.Context())) // If user has specified a target, pass it to the child command. //