From faffdd880d90f1625e591c86b72cc0465158c852 Mon Sep 17 00:00:00 2001 From: Rita Zerrizuela Date: Sun, 21 Feb 2021 22:53:00 -0300 Subject: [PATCH] Rename command function --- internal/cli/quickstarts.go | 2 +- internal/cli/root.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cli/quickstarts.go b/internal/cli/quickstarts.go index 103c2b8e4..f4127a935 100644 --- a/internal/cli/quickstarts.go +++ b/internal/cli/quickstarts.go @@ -18,7 +18,7 @@ import ( "gopkg.in/auth0.v5/management" ) -func quickstartCmd(cli *cli) *cobra.Command { +func quickstartsCmd(cli *cli) *cobra.Command { cmd := &cobra.Command{ Use: "quickstarts", Short: "Quickstart support for getting bootstrapped", diff --git a/internal/cli/root.go b/internal/cli/root.go index 9b0f1960f..90b28f6d5 100644 --- a/internal/cli/root.go +++ b/internal/cli/root.go @@ -59,7 +59,7 @@ func Execute() { // order of the comamnds here matters // so add new commands in a place that reflect its relevance or relation with other commands: rootCmd.AddCommand(loginCmd(cli)) - rootCmd.AddCommand(quickstartCmd(cli)) + rootCmd.AddCommand(quickstartsCmd(cli)) rootCmd.AddCommand(appsCmd(cli)) rootCmd.AddCommand(apisCmd(cli)) rootCmd.AddCommand(testCmd(cli))