Skip to content

Commit 736b4bd

Browse files
jubalmclaude
andcommitted
Fix critical GitHub repository URL bug (v0.3.1 hotfix)
🚨 Critical Fix: - Fixed install.sh GitHub repository URL from claude-discord-integration to claude-code-discord - Fixed uninstall.sh error message with correct repository URL - Fixed README.md manual installation directory name - Fixed remove.md global uninstall instruction 🔧 Impact: - All curl installations now work correctly - File downloads succeed from GitHub - User experience restored This hotfix resolves the complete installation failure introduced in v0.3.0 where all files failed to download due to incorrect repository URL. 🧪 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8db2ef8 commit 736b4bd

5 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.1] - 2025-07-08
9+
10+
### 🚨 Critical Hotfix
11+
- **Fixed installation URL bug** - Corrected GitHub repository URL in install.sh from `claude-discord-integration` to `claude-code-discord`
12+
- **Fixed uninstall guidance** - Updated error messages to use correct repository URL
13+
- **Fixed documentation** - Corrected manual installation directory name in README.md
14+
- **Fixed remove command** - Updated global uninstall instruction in remove.md
15+
16+
### 🔧 Impact
17+
- **All installations now work** - Both local and global curl installations succeed
18+
- **File downloads fixed** - All hook scripts and commands download correctly from GitHub
19+
- **User experience restored** - Single-command installation works as advertised
20+
821
## [0.3.0] - 2025-07-08
922

1023
### 🏠 Local-First Architecture (Major)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ curl -fsSL https://raw.githubusercontent.com/jubalm/claude-code-discord/main/ins
3535
### 🔧 Manual Installation
3636
```bash
3737
git clone https://github.com/jubalm/claude-code-discord.git
38-
cd claude-discord-integration
38+
cd claude-code-discord
3939
chmod +x install.sh
4040
./install.sh # Local installation
4141
./install.sh --global # Global installation

commands/discord/remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ except Exception as e:
132132
! echo " • /user:discord:setup WEBHOOK_URL - Reconfigure"
133133
! echo ""
134134
! echo "🗑️ To completely remove global Discord components:"
135-
! echo " • Run ./uninstall.sh from the claude-discord-integration directory"
135+
! echo " • curl -fsSL https://raw.githubusercontent.com/jubalm/claude-code-discord/main/uninstall.sh | bash -s -- --global"

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ else
4141
fi
4242

4343
# GitHub repository base URL
44-
GITHUB_BASE="https://raw.githubusercontent.com/jubalm/claude-discord-integration/main"
44+
GITHUB_BASE="https://raw.githubusercontent.com/jubalm/claude-code-discord/main"
4545

4646
# Colors for output
4747
RED='\033[0;31m'

uninstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ else
4343
echo "Available options:"
4444
echo "• Run from a project directory with Discord integration"
4545
echo "• Use --global flag to remove global installation:"
46-
echo " curl -fsSL https://raw.githubusercontent.com/jubalm/claude-discord-integration/main/uninstall.sh | bash -s -- --global"
46+
echo " curl -fsSL https://raw.githubusercontent.com/jubalm/claude-code-discord/main/uninstall.sh | bash -s -- --global"
4747
exit 1
4848
fi
4949

0 commit comments

Comments
 (0)