From 8c84c54c8eef75515f34313a696bb0552c407083 Mon Sep 17 00:00:00 2001 From: Stefan Schmitt Date: Mon, 14 Sep 2026 13:29:46 +0200 Subject: [PATCH 1/2] Update macos.mdx Current documentation leads to this issue with trust been the second ==> Tapping evcc-io/tap Cloning into '/opt/homebrew/Library/Taps/evcc-io/homebrew-tap'... Error: Invalid formula (golden_gate): /opt/homebrew/Library/Taps/evcc-io/homebrew-tap/Formula/evcc.rb Refusing to load formula evcc-io/tap/evcc from untrusted tap evcc-io/tap. Run `brew trust --formula evcc-io/tap/evcc` or `brew trust evcc-io/tap` to trust it. --- src/content/docs/en/installation/macos.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/installation/macos.mdx b/src/content/docs/en/installation/macos.mdx index c4c2b9c3f..90f4351f4 100644 --- a/src/content/docs/en/installation/macos.mdx +++ b/src/content/docs/en/installation/macos.mdx @@ -21,8 +21,8 @@ If you want to install evcc without a package manager or test a nightly version, Open a terminal window and install [Homebrew](https://brew.sh), if it's not already installed. ```sh + brew trust --formula evcc-io/tap brew tap evcc-io/tap - brew trust --formula evcc-io/tap brew update brew install evcc ``` From 0dfb8103c92ed0c52a4d5bc283a295c397cb6073 Mon Sep 17 00:00:00 2001 From: Michael Geers Date: Mon, 14 Sep 2026 20:56:47 +0200 Subject: [PATCH 2/2] macOS: trust tap before tapping, use --tap flag Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_018etuxu2h7h782GusnKZ4JX --- src/content/docs/de/installation/macos.mdx | 2 +- src/content/docs/en/installation/macos.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/de/installation/macos.mdx b/src/content/docs/de/installation/macos.mdx index d48c3b939..c8c9065bf 100644 --- a/src/content/docs/de/installation/macos.mdx +++ b/src/content/docs/de/installation/macos.mdx @@ -21,8 +21,8 @@ Wenn du evcc ohne Paketmanager installieren willst oder eine nightly Version tes Öffne ein Terminal Fenster und installiere [Homebrew](https://brew.sh), falls es noch nicht installiert ist. ```sh + brew trust --tap evcc-io/tap brew tap evcc-io/tap - brew trust --formula evcc-io/tap brew update brew install evcc ``` diff --git a/src/content/docs/en/installation/macos.mdx b/src/content/docs/en/installation/macos.mdx index 90f4351f4..e0c3ea77e 100644 --- a/src/content/docs/en/installation/macos.mdx +++ b/src/content/docs/en/installation/macos.mdx @@ -21,7 +21,7 @@ If you want to install evcc without a package manager or test a nightly version, Open a terminal window and install [Homebrew](https://brew.sh), if it's not already installed. ```sh - brew trust --formula evcc-io/tap + brew trust --tap evcc-io/tap brew tap evcc-io/tap brew update brew install evcc