From 134391b74cbbc66db11512a91f50538b4c3a8277 Mon Sep 17 00:00:00 2001 From: Jeff Escalante Date: Fri, 20 Aug 2021 13:09:08 -0400 Subject: [PATCH] fix homebrew command for installation (#12499) --- website/pages/downloads/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/pages/downloads/index.jsx b/website/pages/downloads/index.jsx index 5e87284ef..cbda15cdf 100644 --- a/website/pages/downloads/index.jsx +++ b/website/pages/downloads/index.jsx @@ -49,12 +49,12 @@ export default function DownloadsPage(staticProps) { packageManagerOverrides={[ { label: 'Homebrew', - commands: [`brew tap hashicorp/tap`, `brew install ${productSlug}`], + commands: [`brew install ${productSlug}`], os: 'darwin', }, { label: 'Homebrew', - commands: [`brew tap hashicorp/tap`, `brew install ${productSlug}`], + commands: [`brew install ${productSlug}`], os: 'linux', }, ]}