Skip to content

Commit

Permalink
Avoid validate compatibility during astro auth (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
andriisoldatenko committed Jun 30, 2020
1 parent 98c2d86 commit ade90f1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ var (

func newAuthRootCmd(client *houston.Client, out io.Writer) *cobra.Command {
cmd := &cobra.Command{
// ignore PersistentPreRunE of root command
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
return nil
},
Use: "auth",
Short: "Manage astronomer identity",
Long: "Handles authentication to the Astronomer Platform",
}

cmd.AddCommand(
newAuthLoginCmd(client, out),
newAuthLogoutCmd(client, out),
Expand Down

0 comments on commit ade90f1

Please sign in to comment.