@@ -484,7 +484,7 @@ func (r *RootCmd) Server(newAPI func(context.Context, *coderd.Options) (*coderd.
484
484
tunnelDone <- chan struct {}= make (chan struct {},1 )
485
485
)
486
486
if cfg .AccessURL .String ()== "" {
487
- cliui .Infof (inv .Stderr ,"Opening tunnel so workspaces can connect to your deployment. For production scenarios, specify an external access URL\n " )
487
+ cliui .Infof (inv .Stderr ,"Opening tunnel so workspaces can connect to your deployment. For production scenarios, specify an external access URL" )
488
488
tunnel ,err = devtunnel .New (ctx ,logger .Named ("devtunnel" ),cfg .WgtunnelHost .String ())
489
489
if err != nil {
490
490
return xerrors .Errorf ("create tunnel: %w" ,err )
@@ -531,7 +531,7 @@ func (r *RootCmd) Server(newAPI func(context.Context, *coderd.Options) (*coderd.
531
531
}
532
532
533
533
// A newline is added before for visibility in terminal output.
534
- cliui .Infof (inv .Stdout ,"\n View the Web UI: %s\n " ,cfg .AccessURL .String ())
534
+ cliui .Infof (inv .Stdout ,"\n View the Web UI: %s" ,cfg .AccessURL .String ())
535
535
536
536
// Used for zero-trust instance identity with Google Cloud.
537
537
googleTokenValidator ,err := idtoken .NewValidator (ctx ,option .WithoutAuthentication ())