From 2b691a0907a362bfa2e8a312c1c52078d46c1db4 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 17 Jan 2026 12:59:48 -0600 Subject: Initial commit: archzfs ISO build system Build scripts for creating custom Arch Linux ISO with ZFS support. Includes installer scripts and VM testing setup. --- custom/install-claude | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 custom/install-claude (limited to 'custom/install-claude') diff --git a/custom/install-claude b/custom/install-claude new file mode 100755 index 0000000..e467108 --- /dev/null +++ b/custom/install-claude @@ -0,0 +1,24 @@ +#!/bin/bash +# install-claude - Install Claude Code CLI +# Run this if you need AI assistance during installation + +set -e + +echo "Installing Claude Code..." + +# Check if npm is available +if ! command -v npm &>/dev/null; then + echo "npm not found. Installing nodejs and npm..." + pacman -Sy --noconfirm nodejs npm +fi + +# Install Claude Code globally +npm install -g @anthropic-ai/claude-code + +echo "" +echo "Claude Code installed successfully!" +echo "" +echo "To start Claude Code, run:" +echo " claude" +echo "" +echo "You'll need to authenticate on first run." -- cgit v1.2.3