From d2c4e75099f512ef438e84fac086ce7b0c29e9de Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 27 May 2021 08:43:53 -0700 Subject: [PATCH] cmd/tailscale/cli: update URL in error message for Synology unsupported feature Signed-off-by: Brad Fitzpatrick --- cmd/tailscale/cli/up.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tailscale/cli/up.go b/cmd/tailscale/cli/up.go index 02f92ceef..5c0c3f905 100644 --- a/cmd/tailscale/cli/up.go +++ b/cmd/tailscale/cli/up.go @@ -268,7 +268,7 @@ func runUp(ctx context.Context, args []string) error { } if distro.Get() == distro.Synology { - notSupported := "not yet supported on Synology; see https://github.com/tailscale/tailscale/issues/451" + notSupported := "not supported on Synology; see https://github.com/tailscale/tailscale/issues/1995" if upArgs.acceptRoutes { return errors.New("--accept-routes is " + notSupported) }