diff --git a/Tailscaled-on-macOS.md b/Tailscaled-on-macOS.md index 7cb3cf2..a5db906 100644 --- a/Tailscaled-on-macOS.md +++ b/Tailscaled-on-macOS.md @@ -8,7 +8,7 @@ This page is about how to use the open source, non-GUI `tailscaled` and `tailsca ## Install Go -Install Go 1.18 (or whatever the most recently released Go version is) from https://golang.org/dl/ or Homebrew, etc. Tailscale always requires the most recent Go version and doesn't support older ones. +Install Go 1.20 (or whatever the most recently released Go version is) from https://golang.org/dl/ or Homebrew, etc. Tailscale always requires the most recent Go version and doesn't support older ones. ## Compile Tailscale @@ -19,9 +19,9 @@ $ 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: +You can also compile from a specific release version. For example to build from the source code used for Tailscale 1.38.2, use: ``` -$ go install tailscale.com/cmd/tailscale{,d}@v1.32.2 +$ go install tailscale.com/cmd/tailscale{,d}@v1.38.2 ``` ### Run the `tailscaled` (daemon)