summaryrefslogtreecommitdiffhomepage
path: root/script/hooks.bat
diff options
context:
space:
mode:
Diffstat (limited to 'script/hooks.bat')
-rw-r--r--script/hooks.bat16
1 files changed, 0 insertions, 16 deletions
diff --git a/script/hooks.bat b/script/hooks.bat
deleted file mode 100644
index 52d690100..000000000
--- a/script/hooks.bat
+++ /dev/null
@@ -1,16 +0,0 @@
-@echo off
-
-if not exist ".git" (
- exit /b 0
-)
-
-if not exist ".git\hooks" (
- mkdir ".git\hooks"
-)
-
-(
- echo #!/bin/sh
- echo bun run typecheck
-) > ".git\hooks\pre-push"
-
-echo ✅ Pre-push hook installed