1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2026-03-02 03:49:29 +00:00

Merge pull request #70 from cweagans/hooks

Dropping changes to `yadm.md` and `CONTRIBUTORS`. These are built
programmatically during releases.
This commit is contained in:
Tim Byrne
2017-07-03 16:24:13 -05:00
2 changed files with 29 additions and 0 deletions

14
yadm
View File

@@ -97,10 +97,14 @@ function main() {
shift
done
[ ! -d "$YADM_WORK" ] && error_out "Work tree does not exist: [$YADM_WORK]"
invoke_hook "pre_$YADM_COMMAND"
$YADM_COMMAND "${YADM_ARGS[@]}"
invoke_hook "post_$YADM_COMMAND"
else
#; any other commands are simply passed through to git
invoke_hook "pre_$1"
git_command "$@"
invoke_hook "post_$1"
retval="$?"
fi
@@ -853,6 +857,16 @@ function error_out() {
}
#: ****** Hook handler ******S
function invoke_hook() {
hook_name=$1
if [[ -x "$YADM_DIR/hooks/$hook_name.sh" ]] ; then
debug "invoking hook: $hook_name"
$YADM_DIR/hooks/$hook_name.sh
fi
}
#; ****** Auto Functions ******
function auto_alt() {