Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/authorityd-operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Binary location after install:

### Option B: Download binary directly

Download pre-built binaries from [GitHub Releases](https://github.com/PredicateSystems/rust-predicate-authorityd/releases):
Download pre-built binaries from [GitHub Releases](https://github.com/PredicateSystems/predicate-authority-sidecar/releases):

| Platform | Binary |
|----------|--------|
Expand All @@ -38,7 +38,7 @@ Download pre-built binaries from [GitHub Releases](https://github.com/PredicateS

```bash
# Example: macOS ARM64
curl -LO https://github.com/PredicateSystems/rust-predicate-authorityd/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz
curl -LO https://github.com/PredicateSystems/predicate-authority-sidecar/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz
tar -xzf predicate-authorityd-darwin-arm64.tar.gz
chmod +x predicate-authorityd
./predicate-authorityd --version
Expand Down
4 changes: 2 additions & 2 deletions docs/predicate-authority-user-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ if not is_sidecar_available():

**Option C: Manual binary download**

Download pre-built binaries from [GitHub Releases](https://github.com/PredicateSystems/rust-predicate-authorityd/releases):
Download pre-built binaries from [GitHub Releases](https://github.com/PredicateSystems/predicate-authority-sidecar/releases):

| Platform | Binary |
|----------|--------|
Expand All @@ -89,7 +89,7 @@ Download pre-built binaries from [GitHub Releases](https://github.com/PredicateS

```bash
# Download and extract (example for macOS ARM64)
curl -LO https://github.com/PredicateSystems/rust-predicate-authorityd/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz
curl -LO https://github.com/PredicateSystems/predicate-authority-sidecar/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz
tar -xzf predicate-authorityd-darwin-arm64.tar.gz
chmod +x predicate-authorityd

Expand Down
2 changes: 1 addition & 1 deletion predicate_authority/sidecar_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _safe_urlopen(url: str, *, timeout: int = 30): # noqa: ANN201
return urlopen(url, timeout=timeout) # nosec B310


SIDECAR_REPO = "PredicateSystems/rust-predicate-authorityd"
SIDECAR_REPO = "PredicateSystems/predicate-authority-sidecar"
SIDECAR_BINARY_NAME = "predicate-authorityd"

# Platform mapping: (system, machine) -> artifact name
Expand Down