mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
9 lines
372 B
Bash
Executable file
9 lines
372 B
Bash
Executable file
#!/bin/sh
|
|
# Check if bun version matches package.json
|
|
EXPECTED_VERSION=$(grep '"packageManager"' package.json | sed 's/.*"bun@\([^"]*\)".*/\1/')
|
|
CURRENT_VERSION=$(bun --version)
|
|
if [ "$CURRENT_VERSION" != "$EXPECTED_VERSION" ]; then
|
|
echo "Error: Bun version $CURRENT_VERSION does not match expected version $EXPECTED_VERSION from package.json"
|
|
exit 1
|
|
fi
|
|
bun typecheck
|