From 3c53bedbbf66e37206dd1fd6ed7a196c88a46000 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Thu, 20 Jul 2023 11:19:09 -0700 Subject: [PATCH] cmd/tailscale/cli: limit Darwin-only option to Darwin (#8657) --- cmd/tailscale/cli/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tailscale/cli/update.go b/cmd/tailscale/cli/update.go index adf07f712..dcf72dd71 100644 --- a/cmd/tailscale/cli/update.go +++ b/cmd/tailscale/cli/update.go @@ -44,7 +44,7 @@ var updateCmd = &ffcli.Command{ fs := newFlagSet("update") fs.BoolVar(&updateArgs.yes, "yes", false, "update without interactive prompts") fs.BoolVar(&updateArgs.dryRun, "dry-run", false, "print what update would do without doing it, or prompts") - fs.BoolVar(&updateArgs.appStore, "app-store", false, "check the App Store for updates, even if this is not an App Store install (for testing only!)") + fs.BoolVar(&updateArgs.appStore, "app-store", false, "HIDDEN: check the App Store for updates, even if this is not an App Store install (for testing only)") // These flags are not supported on Arch-based installs. Arch only // offers one variant of tailscale and it's always the latest version. if distro.Get() != distro.Arch {