From f5bc2a2ecd4b44a89a6302685a1757a367ee0c02 Mon Sep 17 00:00:00 2001 From: davidCheckmarx <65907013+davidCheckmarx@users.noreply.github.com> Date: Mon, 7 Dec 2020 16:59:15 +0200 Subject: [PATCH] Fix auth register docs (#124) --- internal/commands/auth.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/commands/auth.go b/internal/commands/auth.go index 274f0b5d3..f66f4179b 100644 --- a/internal/commands/auth.go +++ b/internal/commands/auth.go @@ -29,12 +29,12 @@ func NewAuthCommand(authWrapper wrappers.AuthWrapper) *cobra.Command { } createClientCmd := &cobra.Command{ Use: "register", - Short: "Register new oath2 client for ast", + Short: "Register new oauth2 client for ast", Long: "Register new oath2 client and outputs its generated credentials in the format =.\n" + "If you wish to use this client with the cli set those credentials as environment variables.\n" + - "On Linux just wrap this command with eval e.g:\n" + + "On Linux just wrap this command with export e.g:\n" + "\n" + - " eval $(ast auth register -u -p ) \n" + + " export $(ast auth register -u -p ) \n" + "\n" + "On Windows you can use PowerShell e.g.:\n" + "\n" +