From cfd8664a2baa35bc5675e0ceb4f7cde913d25ca9 Mon Sep 17 00:00:00 2001 From: Amir Barshavit Date: Tue, 3 Feb 2026 11:13:41 +0200 Subject: [PATCH] fix: hardcode repo to prompt-security/git-ai in install script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove placeholder logic that could allow the repo to be overridden during release builds. The install script now always fetches from the official prompt-security/git-ai repository. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- install.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/install.sh b/install.sh index 924893c3e..0f2c05ddc 100755 --- a/install.sh +++ b/install.sh @@ -76,12 +76,7 @@ if [ "$UNINSTALL_ONLY" = true ]; then fi # GitHub repository details -# Replaced during release builds with the actual repository (e.g., "prompt-security/git-ai") -# When set to __REPO_PLACEHOLDER__, defaults to "prompt-security/git-ai" -REPO="__REPO_PLACEHOLDER__" -if [ "$REPO" = "__REPO_PLACEHOLDER__" ]; then - REPO="prompt-security/git-ai" -fi +REPO="prompt-security/git-ai" # Version placeholder - replaced during release builds with actual version (e.g., "v1.0.24") # When set to __VERSION_PLACEHOLDER__, defaults to "latest"