From b19a5dfc157bc5bc0b3b4f33d30881a803092784 Mon Sep 17 00:00:00 2001 From: Brandon Shrewsbury Date: Wed, 15 Jul 2026 10:54:08 -0600 Subject: [PATCH] Add brew trust to the brew install commands outside the shared include Homebrew 6.0 refuses to load formulae from a tap the user has not explicitly trusted, so the documented tap-then-install sequence fails. PR #5214 adds the trust step to the shared CLI install include; this covers the two remaining brew blocks that do not use it: the inline copy in try/part-3.md and the viam-server one-liner in reference/viam-server.md. Part of #5215. --- docs/reference/viam-server.md | 2 +- docs/try/part-3.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/reference/viam-server.md b/docs/reference/viam-server.md index e4e7f23205..c7ee7d3bae 100644 --- a/docs/reference/viam-server.md +++ b/docs/reference/viam-server.md @@ -379,7 +379,7 @@ The `viam-agent` and `viam-server` binaries are installed at /opt/viam/bin {{% tab name="macOS" %}} ```bash {class="line-numbers linkable-line-numbers"} -brew tap viamrobotics/brews && brew install viam-server +brew tap viamrobotics/brews && brew trust viamrobotics/brews && brew install viam-server ``` The `viam-server` binary is installed at /opt/homebrew/bin/viam-server. diff --git a/docs/try/part-3.md b/docs/try/part-3.md index c31b86b12b..eb9ba7ec82 100644 --- a/docs/try/part-3.md +++ b/docs/try/part-3.md @@ -46,6 +46,7 @@ The Viam CLI is used for authentication, module generation, and deployment. ```bash brew tap viamrobotics/brews +brew trust viamrobotics/brews brew install viam ```