From bacadbc81f0337f5efeab05bd367983cdd62db85 Mon Sep 17 00:00:00 2001 From: Shiyas Mohammed Date: Mon, 16 Feb 2026 17:35:44 +0530 Subject: [PATCH] fix: update GitHub release URLs in install script --- AGENTS.md | 2 +- public/install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index d1d9503..03114b8 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -33,7 +33,7 @@ pnpm preview - Content collections configured in `src/content.config.ts` - **Installer**: `public/install` - shell script that downloads and installs ampup binary - Detects platform (Linux/Darwin) and architecture (x86_64/aarch64) - - Downloads from GitHub releases: `github.com/edgeandnode/amp/releases/latest` + - Downloads from GitHub releases: `github.com/edgeandnode/ampup/releases/latest` - Served at `https://ampup.sh/install` ## Key Components diff --git a/public/install b/public/install index 820eed0..1b30578 100755 --- a/public/install +++ b/public/install @@ -36,7 +36,7 @@ download_asset() { local artifact=$1 local output=$2 local opts="--proto =https --tlsv1.2 --silent --show-error --fail --location" - local url="https://github.com/edgeandnode/amp/releases/latest/download/${artifact}" + local url="https://github.com/edgeandnode/ampup/releases/latest/download/${artifact}" ensure curl $opts "$url" --output "$output" }