blob: 83b2043f18635e74836a36625630a2f473cded0d (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
# Refuse to push anything that would not survive `make ci`.
#
# git never clones hooks, so on a fresh checkout this must be installed with
# `make install-hooks`.
set -e
exec make ci
|