From 22868d3b69f20dfcb211db26c28832f58ac6fa2b Mon Sep 17 00:00:00 2001 From: Kristian Vastveit Date: Sun, 19 Apr 2026 11:52:44 +0200 Subject: [PATCH] fix: correct GitHub username in one-liner and README --- README.md | 4 ++-- install-remote.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6748f5b..1b592b6 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,12 @@ On 2026-04-04, Anthropic added server-side validation that rejects OAuth request ## Install ```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: ```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 ./install.sh ``` diff --git a/install-remote.sh b/install-remote.sh index 9a25d76..8107c51 100755 --- a/install-remote.sh +++ b/install-remote.sh @@ -2,9 +2,9 @@ set -euo pipefail # 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)" cleanup() { rm -rf "$TMPDIR"; }