Skip to content

Commit 7fa81d2

Browse files
committed
removed login prompt
1 parent a8cd522 commit 7fa81d2

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

pkg/cmd/login/login.go

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,8 @@ func (o LoginOptions) handleOnboarding(user *entity.User, t *terminal.Terminal)
200200
return breverrors.WrapAndTrace(err)
201201
}
202202
newOnboardingStatus := make(map[string]interface{})
203-
// todo make this one api call
204-
// if !currentOnboardingStatus.SSH {
205-
// err = OnboardUserWithSSHKeys(t, user, o.LoginStore, true)
206-
// if err != nil {
207-
// return breverrors.WrapAndTrace(err)
208-
// }
209-
// newOnboardingStatus["SSH"] = true
210-
// }
211203

204+
/* Commenting out IDE selection to stop prompting users
212205
var ide string
213206
if currentOnboardingStatus.Editor == "" {
214207
// Check IDE requirements
@@ -225,6 +218,7 @@ func (o LoginOptions) handleOnboarding(user *entity.User, t *terminal.Terminal)
225218
if err != nil {
226219
return breverrors.WrapAndTrace(err)
227220
}
221+
*/
228222

229223
if !currentOnboardingStatus.UsedCLI {
230224
// by getting this far, we know they have set up the cli

0 commit comments

Comments
 (0)