Skip to content
Draft
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion public/install
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down