Skip to content

Commit ce8bf09

Browse files
authored
docs(cli): document Homebrew tap trust for third-party tap installs (#483)
Homebrew will require explicit trust for non-official taps in a future release (6.0.0 or 5.2.0, whichever comes first). The existing 'brew install --cask mozilla-ai/tap/cq' is fully-qualified and already trusts only that cask, so it keeps working; this note makes that explicit and documents 'brew trust --cask' for users who tap first and install by short name.
1 parent 767d88b commit ce8bf09

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

cli/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ cd cq/cli
2323
make build
2424
```
2525

26+
> **Homebrew tap trust:** `mozilla-ai/tap` is a third-party tap, and Homebrew will require explicit [tap trust](https://docs.brew.sh/Tap-Trust) for non-official taps from versions 5.2.0 and 6.0.0 onwards. Installing by the fully-qualified cask name (`mozilla-ai/tap/cq`, as above) trusts only the `cq` cask, so that command keeps working without extra steps. If you prefer to tap first and install by short name, trust the cask explicitly:
27+
>
28+
> ```bash
29+
> brew tap mozilla-ai/tap
30+
> brew trust --cask mozilla-ai/tap/cq
31+
> brew install --cask cq
32+
> ```
33+
2634
## Usage
2735
2836
```bash

0 commit comments

Comments
 (0)