/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
script/hooks
19 строк
338 B
Kevin King
ignore: python sdk (#2779)
29 окт 2025, 02:32
Не верифицирован
29 окт 2025, 02:32
0e60f66
Код
Авторство
О чём код?
#!/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"