From 142dd268a0532d1bdee75fa870b6503f7351b766 Mon Sep 17 00:00:00 2001 From: Kevin O'Brien Date: Fri, 2 Jan 2026 22:09:23 -0500 Subject: [PATCH] fix: update repo URLs after opencode moved to anomalyco/opencode --- bin/install | 2 +- bin/list-all | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install b/bin/install index 1d03db9..cc076da 100755 --- a/bin/install +++ b/bin/install @@ -54,7 +54,7 @@ get_download_url() { fi fi - echo "https://github.com/sst/opencode/releases/download/v${version}/opencode-${platform}-${arch}.${ext}" + echo "https://github.com/anomalyco/opencode/releases/download/v${version}/opencode-${platform}-${arch}.${ext}" } install_opencode() { diff --git a/bin/list-all b/bin/list-all index 7e2605b..44476b2 100755 --- a/bin/list-all +++ b/bin/list-all @@ -2,7 +2,7 @@ set -euo pipefail -releases_path="https://api.github.com/repos/sst/opencode/releases" +releases_path="https://api.github.com/repos/anomalyco/opencode/releases" # Build curl arguments as an array to avoid eval curl_args=(--retry 10 --retry-delay 2 -sfS)