blob: 1b5d5c62b2ad6c3a77cb7b6d20e647c64b85040a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | #!/bin/bash
#
# An example hook script to store metadata information using
# metastore on each commit.
if ! metastore -s; then
	echo "Failed to execute metastore -s" >&2
	exit 1
fi
if [ ! -e ".metadata" ]; then
	echo ".metadata missing" >&2
	exit 1
fi
if ! git-add .metadata; then
	echo "Failed to execute git-add .metadata" >&2
	exit 1
fi
exit 0
 |