diff --git a/debian/bootstrap b/debian/bootstrap index 3810f40..b4b3565 100755 --- a/debian/bootstrap +++ b/debian/bootstrap @@ -25,6 +25,8 @@ read -r REPLY /dev/null 2>&1; then + echo "Claude Code is already installed, skipping." +else + curl -fsSL https://claude.ai/install.sh | bash +fi diff --git a/generic/install-rtk b/generic/install-rtk new file mode 100755 index 0000000..73e4da0 --- /dev/null +++ b/generic/install-rtk @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-rtk) + +if command -v rtk >/dev/null 2>&1; then + echo "rtk is already installed, skipping." +else + curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/refs/heads/master/install.sh | sh +fi