From 18ca36c683d4a7639a8f18094ee800131f55aed8 Mon Sep 17 00:00:00 2001 From: Jack Green Date: Wed, 17 Jun 2026 21:10:47 +0100 Subject: [PATCH] Add `brew trust` command for Homebrew installation [brew changes](https://docs.brew.sh/Tap-Trust) require taps to be explicitly trusted, else installation is blocked: ``` % brew install hazelcast Error: Refusing to load formula hazelcast/hz/hazelcast from untrusted tap hazelcast/hz. Run `brew trust --formula hazelcast/hz/hazelcast` or `brew trust hazelcast/hz` to trust it. ``` --- docs/modules/getting-started/pages/install-hazelcast.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/modules/getting-started/pages/install-hazelcast.adoc b/docs/modules/getting-started/pages/install-hazelcast.adoc index 2e9385059..dfd1f7f21 100644 --- a/docs/modules/getting-started/pages/install-hazelcast.adoc +++ b/docs/modules/getting-started/pages/install-hazelcast.adoc @@ -39,6 +39,7 @@ To install on macOS, use the Homebrew package manager. [source,bash,subs="attributes+"] ---- brew tap hazelcast/hz +brew trust hazelcast/hz brew install hazelcast@{os-version} ----