summaryrefslogtreecommitdiffhomepage
path: root/scripts/hooks
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-07-31 01:25:24 -0400
committerDax Raad <[email protected]>2025-07-31 01:25:24 -0400
commit2d9ed06367516daa184ecf70bb0b2451c06da8d1 (patch)
treee735b78999853aa52d77240a4be7d32e0d09556e /scripts/hooks
parent50be2aee39289b7e05299e61d53478736ab914cc (diff)
downloadopencode-2d9ed06367516daa184ecf70bb0b2451c06da8d1.tar.gz
opencode-2d9ed06367516daa184ecf70bb0b2451c06da8d1.zip
ci: scripts
Diffstat (limited to 'scripts/hooks')
-rwxr-xr-xscripts/hooks15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/hooks b/scripts/hooks
deleted file mode 100755
index 4597c6f41..000000000
--- a/scripts/hooks
+++ /dev/null
@@ -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"