mirror of
https://github.com/patriceckhart/zot.git
synced 2026-06-26 21:36:31 +02:00
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:
parent
ec3b7a7d48
commit
ad60f82390
1 changed files with 3 additions and 3 deletions
|
|
@ -18,19 +18,19 @@ Yet another coding agent harness, lightweight and written (vibe-slopped) in go.
|
|||
### One-liner (macOS, Linux)
|
||||
|
||||
```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:
|
||||
|
||||
```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)
|
||||
|
||||
```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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue