From 202580d8deb94f8d8ee1cb2cb74ac014784b7519 Mon Sep 17 00:00:00 2001 From: Denton Gentry Date: Mon, 31 Oct 2022 05:37:57 -0700 Subject: [PATCH] Add note abot installing a release version --- Tailscaled-on-macOS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tailscaled-on-macOS.md b/Tailscaled-on-macOS.md index f585006..7cb3cf2 100644 --- a/Tailscaled-on-macOS.md +++ b/Tailscaled-on-macOS.md @@ -19,6 +19,11 @@ $ go install tailscale.com/cmd/tailscale{,d}@main That'll put the binaries in `$(go env GOPATH)/bin`, so likely `$HOME/go/bin`. You can copy or symlink those binaries into your `$PATH`, or make your `$PATH` include that directory. +You can also compile from a specific release version. For example to build from the source code used for Tailscale 1.32.2, use: +``` +$ go install tailscale.com/cmd/tailscale{,d}@v1.32.2 +``` + ### Run the `tailscaled` (daemon) ```