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/pre-commit | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 examples/pre-commit (limited to 'examples/pre-commit') diff --git a/examples/pre-commit b/examples/pre-commit deleted file mode 100644 index b91635d..0000000 --- a/examples/pre-commit +++ /dev/null @@ -1,27 +0,0 @@ -#!/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