Skip to content

Commit 7eb789b

Browse files
committed
remove trailing slash
1 parent e642117 commit 7eb789b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/dbc/auth.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type AuthCmd struct {
3838
}
3939

4040
type LoginCmd struct {
41-
RegistryURL string `arg:"positional" help:"URL of the driver registry to authenticate with [default: https://dbc-cdn-private.columnar.tech/]"`
41+
RegistryURL string `arg:"positional" help:"URL of the driver registry to authenticate with [default: https://dbc-cdn-private.columnar.tech]"`
4242
ClientID string `arg:"env:OAUTH_CLIENT_ID" help:"OAuth Client ID (can also be set via DBC_OAUTH_CLIENT_ID)"`
4343
ApiKey string `arg:"--api-key" help:"Authenticate using an API key instead of OAuth (use '-' to read from stdin)"`
4444
}
@@ -231,7 +231,7 @@ func (m loginModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
231231
func (m loginModel) View() string { return m.spinner.View() + " Waiting for confirmation..." }
232232

233233
type LogoutCmd struct {
234-
RegistryURL string `arg:"positional" help:"URL of the driver registry to log out from [default: https://dbc-cdn-private.columnar.tech/]"`
234+
RegistryURL string `arg:"positional" help:"URL of the driver registry to log out from [default: https://dbc-cdn-private.columnar.tech]"`
235235
Purge bool `arg:"--purge" help:"Remove all local auth credentials for dbc"`
236236
}
237237

0 commit comments

Comments
 (0)