From d119c8d1f5b18c6ee9c5efa90615427083875e00 Mon Sep 17 00:00:00 2001 From: Przemyslaw Pawelczyk Date: Tue, 19 Jan 2016 20:42:22 +0100 Subject: examples: Move hook scripts to their own subdirectory. --- examples/hooks/pre-commit | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 examples/hooks/pre-commit (limited to 'examples/hooks/pre-commit') diff --git a/examples/hooks/pre-commit b/examples/hooks/pre-commit new file mode 100644 index 0000000..b91635d --- /dev/null +++ b/examples/hooks/pre-commit @@ -0,0 +1,27 @@ +#!/bin/sh +# +# An example hook script to store metadata information using +# metastore on each commit. + +MSFILE=".metadata" + +exit_on_fail() { + "$@" + if [ $? -ne 0 ]; then + echo "Failed to execute: $@" >&2 + exit 1 + fi +} + +exit_on_fail \ + metastore -s -f "$MSFILE" + +if [ ! -e "$MSFILE" ]; then + echo "\"$MSFILE\" missing" >&2 + exit 1 +fi + +exit_on_fail \ + git-add "$MSFILE" + +exit 0 -- cgit v1.2.1