From add825e02e38aaedfada789c7285455dbf51af9e Mon Sep 17 00:00:00 2001 From: SentienceDEV Date: Sat, 21 Feb 2026 10:42:28 -0800 Subject: [PATCH] fix sidecar repo name --- docs/authorityd-operations.md | 4 ++-- docs/predicate-authority-user-manual.md | 4 ++-- predicate_authority/sidecar_binary.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/authorityd-operations.md b/docs/authorityd-operations.md index 6c3a4ed..a5bcd8a 100644 --- a/docs/authorityd-operations.md +++ b/docs/authorityd-operations.md @@ -26,7 +26,7 @@ Binary location after install: ### Option B: Download binary directly -Download pre-built binaries from [GitHub Releases](https://github.com/PredicateSystems/predicate-authority-sidecar/releases): +Download pre-built binaries from [GitHub Releases](https://github.com/PredicateSystems/rust-predicate-authorityd/releases): | Platform | Binary | |----------|--------| @@ -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/predicate-authority-sidecar/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz +curl -LO https://github.com/PredicateSystems/rust-predicate-authorityd/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz tar -xzf predicate-authorityd-darwin-arm64.tar.gz chmod +x predicate-authorityd ./predicate-authorityd --version diff --git a/docs/predicate-authority-user-manual.md b/docs/predicate-authority-user-manual.md index 47f7510..0454c3f 100644 --- a/docs/predicate-authority-user-manual.md +++ b/docs/predicate-authority-user-manual.md @@ -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/predicate-authority-sidecar/releases): +Download pre-built binaries from [GitHub Releases](https://github.com/PredicateSystems/rust-predicate-authorityd/releases): | Platform | Binary | |----------|--------| @@ -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/predicate-authority-sidecar/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz +curl -LO https://github.com/PredicateSystems/rust-predicate-authorityd/releases/latest/download/predicate-authorityd-darwin-arm64.tar.gz tar -xzf predicate-authorityd-darwin-arm64.tar.gz chmod +x predicate-authorityd diff --git a/predicate_authority/sidecar_binary.py b/predicate_authority/sidecar_binary.py index 447e0b5..7a29982 100644 --- a/predicate_authority/sidecar_binary.py +++ b/predicate_authority/sidecar_binary.py @@ -53,7 +53,7 @@ def _safe_urlopen(url: str, *, timeout: int = 30): # noqa: ANN201 return urlopen(url, timeout=timeout) # nosec B310 -SIDECAR_REPO = "PredicateSystems/predicate-authority-sidecar" +SIDECAR_REPO = "PredicateSystems/rust-predicate-authorityd" SIDECAR_BINARY_NAME = "predicate-authorityd" # Platform mapping: (system, machine) -> artifact name