summaryrefslogtreecommitdiff
path: root/post-commit.tmpl
blob: df441fa5e26c156c2dbf6509a89bd0845e88911f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

hook_active= {{ active }}
remote_url= {{ mirror_url }}

if [ "$hook_active" == false ]; the
	echo 'Mirror push hook is not active!'
	exit(-1);
fi

if git ls-remote $remote_url; then
	echo "mirro_foo" > /tmp/mirror_foo
else
	echo "mirror_bat" > /tmp/mirror_baz
fi