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))