aboutsummaryrefslogblamecommitdiff
path: root/v2/aux/ci/git-pre-receive.sh
blob: 199d06e54295775e32e1ac1c7e9f89c69cfb4c6c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                
#!/bin/sh
set -eu

read -r _oldrev SHA _refname
unset GIT_DIR

if [ "$SHA" = '0000000000000000000000000000000000000000' ]; then
	exit
fi

printf 'Upgrading post-receive hook...' >&2
git show "$SHA":aux/ci/git-post-receive.sh > hooks/post-receive
chmod +x hooks/post-receive
printf 'done.\n' >&2