diff --git a/cmd/tailscale/cli/cli.go b/cmd/tailscale/cli/cli.go index 74d02800b..db3f2fb05 100644 --- a/cmd/tailscale/cli/cli.go +++ b/cmd/tailscale/cli/cli.go @@ -130,6 +130,7 @@ change in the future. netlockCmd, licensesCmd, exitNodeCmd, + updateCmd, }, FlagSet: rootfs, Exec: func(context.Context, []string) error { return flag.ErrHelp }, @@ -145,8 +146,6 @@ change in the future. switch { case slices.Contains(args, "debug"): rootCmd.Subcommands = append(rootCmd.Subcommands, debugCmd) - case slices.Contains(args, "update"): - rootCmd.Subcommands = append(rootCmd.Subcommands, updateCmd) } if runtime.GOOS == "linux" && distro.Get() == distro.Synology { rootCmd.Subcommands = append(rootCmd.Subcommands, configureHostCmd)