chore: remove claude code entirely

This commit is contained in:
Björn Fromme
2026-02-23 16:14:30 +01:00
parent 86e9d539af
commit 9d43c4acbd
5 changed files with 0 additions and 73 deletions
-19
View File
@@ -1,19 +0,0 @@
#!/bin/bash
## Description: Run Claude Code
## Usage: claude [args]
## Example: ddev claude
## Example: ddev claude --help
## Example: ddev claude doctor
# Ensure ~/.local/bin is in PATH
export PATH="$HOME/.local/bin:$PATH"
# Check if claude is installed
if [ ! -f "$HOME/.local/bin/claude" ]; then
echo "Claude Code is not installed. Installing now..."
curl -fsSL https://claude.ai/install.sh | bash
fi
# Run claude with all arguments
exec "$HOME/.local/bin/claude" "$@"