From 6b4ca307524b04ec8d50b51e5d42fbad6309790c Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Fri, 3 Jul 2026 12:32:40 +0530 Subject: [PATCH] docs: use official Homebrew core and Scoop main bucket for install The Auth0 CLI is now published to Homebrew core and the Scoop main bucket, so the custom tap and bucket are no longer required. Simplify the stable install commands and add migration notes for users on the old tap/bucket. --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b6979cc6..7fcb36ccd 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,16 @@ Build, manage and test your [Auth0](https://auth0.com/) integrations from the co Install via [Homebrew](https://brew.sh/): ```bash -brew tap auth0/auth0-cli && brew install auth0 +brew install auth0 ``` +> [!NOTE] +> The CLI is now available in the official Homebrew core, so a custom tap is no longer needed. If you previously installed via the `auth0/auth0-cli` tap, migrate with: +> ```bash +> brew uninstall auth0 && brew untap auth0/auth0-cli +> brew install auth0 +> ``` + Install via [cURL](https://curl.se/): 1. Download the binary. It will be placed in `./auth0`: @@ -60,10 +67,15 @@ Install via [cURL](https://curl.se/): Install via [Scoop](https://scoop.sh/): ```bash -scoop bucket add auth0 https://github.com/auth0/scoop-auth0-cli.git scoop install auth0 ``` +> [!NOTE] +> The CLI is now available in the official Scoop `main` bucket (enabled by default), so a custom bucket is no longer needed. If you previously installed from the `auth0/scoop-auth0-cli` bucket, migrate with: +> ```bash +> scoop uninstall auth0 && scoop bucket rm auth0 +> scoop install auth0 +> ``` Install via [Powershell](https://learn.microsoft.com/en-us/powershell/):