2 parents 93bf51c + 76b3a82 commit 4213fe0Copy full SHA for 4213fe0
1 file changed
.claude/hooks/session-start.sh
@@ -12,6 +12,14 @@ fi
12
13
echo "Installing development tools for Tern..."
14
15
+# Add wasm32-wasip2 target for WebAssembly builds
16
+if ! rustup target list --installed | grep -q wasm32-wasip2; then
17
+ echo "Adding wasm32-wasip2 target..."
18
+ rustup target add wasm32-wasip2
19
+else
20
+ echo "wasm32-wasip2 target already installed"
21
+fi
22
+
23
# Install cargo-binstall if not already installed (for fast binary downloads)
24
if ! command -v cargo-binstall &> /dev/null; then
25
echo "Installing cargo-binstall..."
0 commit comments