From 625f3ac14482e510865bd32a0eecc23fe8dafb86 Mon Sep 17 00:00:00 2001 From: Mark Phelps Date: Thu, 3 Mar 2022 15:36:53 -0500 Subject: [PATCH] Updates wording for codespaces accept permissions flow --- pkg/cmd/codespace/create.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/cmd/codespace/create.go b/pkg/cmd/codespace/create.go index b145a6a7d..406ad10f6 100644 --- a/pkg/cmd/codespace/create.go +++ b/pkg/cmd/codespace/create.go @@ -164,7 +164,7 @@ func (a *App) handleAdditionalPermissions(ctx context.Context, createParams *api } choices := []string{ - "Continue in browser to review and authorize additional permissions", + "Continue in browser to review and authorize additional permissions (Recommended)", "Continue without authorizing additional permissions", } @@ -190,6 +190,7 @@ func (a *App) handleAdditionalPermissions(ctx context.Context, createParams *api // if the user chose to continue in the browser, open the URL if answers.Accept == choices[0] { + fmt.Fprintln(a.io.ErrOut, "Please re-run the create request after accepting permissions in the browser.") if err := a.browser.Browse(allowPermissionsURL); err != nil { return nil, fmt.Errorf("error opening browser: %w", err) }