Fix broken Claude Code documentation links

Update all references from docs.anthropic.com/en/docs/claude-code
to code.claude.com/docs after documentation site migration.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Bill Allred
2025-12-26 12:27:22 -08:00
parent 78a822a3df
commit ab51a4d7a6
6 changed files with 10 additions and 10 deletions

View File

@@ -35,7 +35,7 @@ if %errorlevel%==0 (
echo [OK] Claude Code is installed
) else (
echo [WARNING] Claude Code CLI not found
echo Install from: https://docs.anthropic.com/en/docs/claude-code
echo Install from: https://code.claude.com/docs
set /p CONTINUE="Continue without Claude Code? (y/n): "
if /i not "!CONTINUE!"=="y" exit /b 1
)

View File

@@ -60,7 +60,7 @@ if command_exists claude; then
print_success "Claude Code is installed ($(claude --version 2>/dev/null || echo 'version check failed'))"
else
print_warning "Claude Code CLI not found"
echo "Install from: https://docs.anthropic.com/en/docs/claude-code"
echo "Install from: https://code.claude.com/docs"
read -p "Continue without Claude Code? (y/n): " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then