Skip to content

Commit

Permalink
cmd/tailscale: make web client URL clickable
Browse files Browse the repository at this point in the history
Updates tailscale#11151

Signed-off-by: Will Norris <will@tailscale.com>
  • Loading branch information
willnorris committed Feb 16, 2024
1 parent 69f5664 commit 2448781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tailscale/cli/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func runWeb(ctx context.Context, args []string) error {
var startedManagementClient bool // we started the management client
if !existingWebClient && !webArgs.readonly {
// Also start full client in tailscaled.
log.Printf("starting tailscaled web client at %s:%d\n", selfIP.String(), web.ListenPort)
log.Printf("starting tailscaled web client at http://%s:%d\n", selfIP.String(), web.ListenPort)
if err := setRunWebClient(ctx, true); err != nil {
return fmt.Errorf("starting web client in tailscaled: %w", err)
}
Expand Down

0 comments on commit 2448781

Please sign in to comment.