Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions acceptance/pipelines/install-pipelines-cli/output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Usage:
pipelines [command]

Available Commands:
auth Authentication related commands
completion Generate the autocompletion script for the specified shell
help Help about any command
init Initialize a new pipelines project
Expand Down Expand Up @@ -45,6 +46,7 @@ Usage:
pipelines [command]

Available Commands:
auth Authentication related commands
completion Generate the autocompletion script for the specified shell
help Help about any command
init Initialize a new pipelines project
Expand Down
10 changes: 10 additions & 0 deletions cmd/pipelines/auth.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package pipelines

import (
"github.com/databricks/cli/cmd/auth"
"github.com/spf13/cobra"
)

func authCommand() *cobra.Command {
return auth.New()
}
1 change: 1 addition & 0 deletions cmd/pipelines/pipelines.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ import (
func New(ctx context.Context) *cobra.Command {
cli := root.New(ctx)
cli.AddCommand(initCommand())
cli.AddCommand(authCommand())
return cli
}
Loading