From 5d5b8e36a80f0ff30dcac24cbd7b4ec4b64474d4 Mon Sep 17 00:00:00 2001 From: Erhan Keseli Date: Sat, 25 Apr 2026 14:20:15 +0200 Subject: [PATCH] fix: correct raw file URL paths for Gitea --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 install.sh diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index 283e7be..22ffab4 --- a/install.sh +++ b/install.sh @@ -2,9 +2,9 @@ # Helmut installer — installs the Helmut skill for Claude Code and/or the Codex prompt. # # Usage: -# curl -fsSL https://git.epod.dev/erhan/helmut/main/install.sh | bash -# curl -fsSL https://git.epod.dev/erhan/helmut/main/install.sh | bash -s -- --claude-only -# curl -fsSL https://git.epod.dev/erhan/helmut/main/install.sh | bash -s -- --codex-only +# curl -fsSL https://git.epod.dev/erhan/helmut/raw/branch/main/install.sh | bash +# curl -fsSL https://git.epod.dev/erhan/helmut/raw/branch/main/install.sh | bash -s -- --claude-only +# curl -fsSL https://git.epod.dev/erhan/helmut/raw/branch/main/install.sh | bash -s -- --codex-only set -euo pipefail @@ -38,7 +38,7 @@ done # Source this repo. When piped via curl, default to the canonical raw URL. # Override with HELMUT_RAW_BASE for forks / mirrors. -RAW_BASE="${HELMUT_RAW_BASE:-https://git.epod.dev/erhan/helmut/main}" +RAW_BASE="${HELMUT_RAW_BASE:-https://git.epod.dev/erhan/helmut/raw/branch/main/}" fetch() { local url="$1"