Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .claude/hooks/session-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ fi

echo "Installing development tools for Tern..."

# Add wasm32-wasip2 target for WebAssembly builds
if ! rustup target list --installed | grep -q wasm32-wasip2; then
echo "Adding wasm32-wasip2 target..."
rustup target add wasm32-wasip2
else
echo "wasm32-wasip2 target already installed"
fi

# Install cargo-binstall if not already installed (for fast binary downloads)
if ! command -v cargo-binstall &> /dev/null; then
echo "Installing cargo-binstall..."
Expand Down