From dcf24eefeba017fdb76232b89970dd03355f0b79 Mon Sep 17 00:00:00 2001 From: Jason Hernandez Date: Thu, 6 Aug 2026 17:40:26 -0700 Subject: [PATCH] Simplify mz-debug download command for macOS We only build mz-debug for arm64 Macs. x86_64 is reaching its end of support. --- doc/user/content/integrations/mz-debug/_index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/user/content/integrations/mz-debug/_index.md b/doc/user/content/integrations/mz-debug/_index.md index 372a48f22d4d4..5a29555a5417c 100644 --- a/doc/user/content/integrations/mz-debug/_index.md +++ b/doc/user/content/integrations/mz-debug/_index.md @@ -19,9 +19,8 @@ disable_list: true {{< tab "macOS" >}} ```shell -ARCH=$(uname -m) sudo echo "Preparing to extract mz-debug..." -curl -L "https://binaries.materialize.com/mz-debug-latest-$ARCH-apple-darwin.tar.gz" \ +curl -L "https://binaries.materialize.com/mz-debug-latest-arm64-apple-darwin.tar.gz" \ | sudo tar -xzC /usr/local --strip-components=1 ``` {{}}