This commit is contained in:
Dax Raad
2025-09-27 03:17:22 -04:00
parent 1908ed7a49
commit 3a20194084
3 changed files with 3 additions and 33 deletions
-15
View File
@@ -1,15 +0,0 @@
#!/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"