Fix hanging install: remove Claude Code CLI check
- Removed npx @anthropic-ai/claude-code --version check during install - This was causing the install script to hang due to network/auth delays - Claude Code will be downloaded automatically when first used by Ralph - Installation should now complete quickly without hanging
This commit is contained in:
parent
68e150d8b2
commit
b987d8226d
1 changed files with 2 additions and 4 deletions
|
|
@ -57,10 +57,8 @@ check_dependencies() {
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# Check Claude Code CLI
|
||||
if ! npx @anthropic-ai/claude-code --version &> /dev/null; then
|
||||
log "WARN" "Claude Code CLI not found. It will be downloaded when first used."
|
||||
fi
|
||||
# Claude Code CLI will be downloaded automatically when first used
|
||||
log "INFO" "Claude Code CLI (@anthropic-ai/claude-code) will be downloaded when first used."
|
||||
|
||||
# Check tmux (optional)
|
||||
if ! command -v tmux &> /dev/null; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue