docs(readme): point install one-liners at zot.patriceckhart.com

The website already redirects /install.sh and /install.ps1 to
the raw github files with a 301, so the short domain is the
stable public entry point for the installers. Updated the three
command snippets in the install section to match.

Nothing else moves \u2014 the rest of the github URLs in the readme
(release page, clone, go install) still use github.com directly
since those aren't proxied.
This commit is contained in:
patriceckhart 2026-04-20 17:12:26 +02:00
parent ec3b7a7d48
commit ad60f82390

View file

@ -18,19 +18,19 @@ Yet another coding agent harness, lightweight and written (vibe-slopped) in go.
### One-liner (macOS, Linux) ### One-liner (macOS, Linux)
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/patriceckhart/zot/main/install.sh | bash curl -fsSL https://zot.patriceckhart.com/install.sh | bash
``` ```
Detects your OS and architecture, downloads the latest release from GitHub, verifies the SHA-256 against the release's `checksums.txt`, extracts the binary, and drops it in `/usr/local/bin`, `~/.local/bin`, or `~/bin`, whichever is writable first. Pass a version or prefix to pin: Detects your OS and architecture, downloads the latest release from GitHub, verifies the SHA-256 against the release's `checksums.txt`, extracts the binary, and drops it in `/usr/local/bin`, `~/.local/bin`, or `~/bin`, whichever is writable first. Pass a version or prefix to pin:
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/patriceckhart/zot/main/install.sh | bash -s -- v0.0.1 ~/bin curl -fsSL https://zot.patriceckhart.com/install.sh | bash -s -- v0.0.1 ~/bin
``` ```
### One-liner (Windows, PowerShell) ### One-liner (Windows, PowerShell)
```powershell ```powershell
iwr -useb https://raw.githubusercontent.com/patriceckhart/zot/main/install.ps1 | iex iwr -useb https://zot.patriceckhart.com/install.ps1 | iex
``` ```
Drops `zot.exe` into `$HOME\bin` and adds it to the user PATH if missing. Open a fresh terminal afterwards. Drops `zot.exe` into `$HOME\bin` and adds it to the user PATH if missing. Open a fresh terminal afterwards.