diff options
-rwxr-xr-x | examples/hooks/post-merge | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/hooks/post-merge b/examples/hooks/post-merge new file mode 100755 index 0000000..938305f --- /dev/null +++ b/examples/hooks/post-merge @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to set metadata information using +# metastore after a successful merge + +MSFILE=".metadata" + +exit_on_fail() { + "$@" + if [ $? -ne 0 ]; then + echo "Failed to execute: $@" >&2 + exit 1 + fi +} + +if [ ! -e "$MSFILE" ]; then + echo "\"$MSFILE\" missing" >&2 + exit 1 +fi + +exit_on_fail \ + metastore -a -m -e -E -q -f "$MSFILE" + +exit 0 |