FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
opencode/script/hooks at dev · barracoder/opencode · GitHub
barracoder
/
opencode
Public
forked from
anomalyco/opencode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
opencode
/
script
/
hooks
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
19 lines (15 loc) · 338 Bytes
Breadcrumbs
opencode
/
script
/
hooks
Copy path
File metadata and controls
executable file
·
19 lines (15 loc) · 338 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!
/bin/sh
if
[
!
-d
"
.git
"
]
;
then
exit
0
fi
mkdir -p .git/hooks
cat
>
.git/hooks/pre-push
<<
'
EOF
'
#!/bin/sh
# Ensure dependencies are installed before typecheck
if command -v bun >/dev/null 2>&1; then
bun install >/dev/null 2>&1 || true
fi
bun run typecheck
EOF
chmod +x .git/hooks/pre-push
echo
"
✅ Pre-push hook installed
"
Back
|
FazBrowse Home
|
New Git URL