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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check Claude Code CLI
|
# Claude Code CLI will be downloaded automatically when first used
|
||||||
if ! npx @anthropic-ai/claude-code --version &> /dev/null; then
|
log "INFO" "Claude Code CLI (@anthropic-ai/claude-code) will be downloaded when first used."
|
||||||
log "WARN" "Claude Code CLI not found. It will be downloaded when first used."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check tmux (optional)
|
# Check tmux (optional)
|
||||||
if ! command -v tmux &> /dev/null; then
|
if ! command -v tmux &> /dev/null; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue