mirror of
https://github.com/sst/opencode.git
synced 2025-07-07 16:14:59 +00:00
15 lines
204 B
Bash
Executable file
15 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -d ".git" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
mkdir -p .git/hooks
|
|
|
|
cat > .git/hooks/pre-push << 'EOF'
|
|
#!/bin/sh
|
|
bun run typecheck
|
|
EOF
|
|
|
|
chmod +x .git/hooks/pre-push
|
|
echo "✅ Pre-push hook installed"
|