fix: correct GitHub username in one-liner and README

This commit is contained in:
Kristian Vastveit 2026-04-19 11:52:44 +02:00
parent 9ed27fe1d6
commit 22868d3b69
2 changed files with 4 additions and 4 deletions

View File

@ -15,12 +15,12 @@ On 2026-04-04, Anthropic added server-side validation that rejects OAuth request
## Install ## Install
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/kristianvastveit/hermes-claude-auth/main/install-remote.sh | bash curl -fsSL https://raw.githubusercontent.com/kristianvast/hermes-claude-auth/main/install-remote.sh | bash
``` ```
Or clone manually: Or clone manually:
```bash ```bash
git clone https://github.com/kristianvastveit/hermes-claude-auth.git git clone https://github.com/kristianvast/hermes-claude-auth.git
cd hermes-claude-auth cd hermes-claude-auth
./install.sh ./install.sh
``` ```

View File

@ -2,9 +2,9 @@
set -euo pipefail set -euo pipefail
# One-line installer for hermes-claude-auth. # One-line installer for hermes-claude-auth.
# Usage: curl -fsSL https://raw.githubusercontent.com/kristianvastveit/hermes-claude-auth/main/install-remote.sh | bash # Usage: curl -fsSL https://raw.githubusercontent.com/kristianvast/hermes-claude-auth/main/install-remote.sh | bash
REPO="https://github.com/kristianvastveit/hermes-claude-auth.git" REPO="https://github.com/kristianvast/hermes-claude-auth.git"
TMPDIR="$(mktemp -d)" TMPDIR="$(mktemp -d)"
cleanup() { rm -rf "$TMPDIR"; } cleanup() { rm -rf "$TMPDIR"; }