We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d74e6d9 commit f2c8f48Copy full SHA for f2c8f48
app/cli/cmd/auth_login.go
@@ -113,7 +113,7 @@ func interactiveAuth(forceHeadless bool) error {
113
func headlessAuth(loginURL *url.URL) error {
114
// Remove cli-callback query parameter to indicate the server to show it inline
115
q := loginURL.Query()
116
- q.Del("callback")
+ q.Set("callback", "")
117
loginURL.RawQuery = q.Encode()
118
fmt.Printf("To authenticate, click on the following link and paste the result back here\n\n %s\n\n", loginURL.String())
119
0 commit comments