aboutsummaryrefslogtreecommitdiff
path: root/lib/hooks.sh
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2023-03-27 15:24:57 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2023-03-27 15:24:57 +0200
commit9fb37a7cfb5fe48c0b43ef29d1b18b482e53082a (patch)
treebbe095e6360f5b2d655f1f1bbf3c3086407dc226 /lib/hooks.sh
parentc8a12c61bc9694d4f6538d47ab317c5122b648ee (diff)
parent0e24383d706a91bc9536b1c0827e4209679ce009 (diff)
downloaddotfiles-9fb37a7cfb5fe48c0b43ef29d1b18b482e53082a.tar.gz
Merge branch 'master' of git.jonasgunz.de:repos/dotfiles
Diffstat (limited to 'lib/hooks.sh')
-rw-r--r--lib/hooks.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/hooks.sh b/lib/hooks.sh
index 8d5fc1d..2256914 100644
--- a/lib/hooks.sh
+++ b/lib/hooks.sh
@@ -2,17 +2,20 @@
# 1: Name of hook
call_hook() {
- if [ ! -x "hooks/$1.hook" ]; then
- debug "$1.hook was not found. Skipping."
+ local HOOK="$1"
+ shift
+
+ if [ ! -x "hooks/$HOOK.hook" ]; then
+ debug "$HOOK.hook was not found. Skipping."
return
fi
- debug "Running hook $1"
+ debug "Running hook $HOOK"
- hooks/$1.hook 2>&1 | (while read line; do echo [hook: $1] $line; done)
+ hooks/$HOOK.hook 2>&1 | (while read line; do echo [hook: $HOOK] $line; done)
RET=${PIPESTATUS[0]}
if [ $RET -ne 0 ]; then
- warning "Hook $1 exitet with code $RET"
+ warning "Hook $HOOK exitet with code $RET"
fi
}