Skip to content

Commit 43e4e95

Browse files
author
Mark Phelps
authored
Merge pull request cli#5276 from markphelps/codespaces-accept-perms-wording
2 parents f6d2f83 + 625f3ac commit 43e4e95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/cmd/codespace/create.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func (a *App) handleAdditionalPermissions(ctx context.Context, createParams *api
173173
}
174174

175175
choices := []string{
176-
"Continue in browser to review and authorize additional permissions",
176+
"Continue in browser to review and authorize additional permissions (Recommended)",
177177
"Continue without authorizing additional permissions",
178178
}
179179

@@ -199,6 +199,7 @@ func (a *App) handleAdditionalPermissions(ctx context.Context, createParams *api
199199

200200
// if the user chose to continue in the browser, open the URL
201201
if answers.Accept == choices[0] {
202+
fmt.Fprintln(a.io.ErrOut, "Please re-run the create request after accepting permissions in the browser.")
202203
if err := a.browser.Browse(allowPermissionsURL); err != nil {
203204
return nil, fmt.Errorf("error opening browser: %w", err)
204205
}

0 commit comments

Comments
 (0)