diff options
author | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2016-01-19 20:42:22 +0100 |
---|---|---|
committer | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2016-01-19 20:42:22 +0100 |
commit | d119c8d1f5b18c6ee9c5efa90615427083875e00 (patch) | |
tree | d503ac20083e98e84e6a4cb33f021ce2d03621b0 /examples/pre-commit | |
parent | d2924f4f2f606d36ac123162c079335ce275f742 (diff) |
examples: Move hook scripts to their own subdirectory.
Diffstat (limited to 'examples/pre-commit')
-rw-r--r-- | examples/pre-commit | 27 |
1 files changed, 0 insertions, 27 deletions
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 |