From 120ea932ff6249690d7e2affa8bac72595e3f63e Mon Sep 17 00:00:00 2001 From: pvincent Date: Sat, 22 Aug 2026 19:25:24 +0400 Subject: [PATCH] gitignore hooks.d --- lib/initiate.bash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/initiate.bash b/lib/initiate.bash index 165d96a..09e0780 100644 --- a/lib/initiate.bash +++ b/lib/initiate.bash @@ -217,7 +217,9 @@ function launch_hooks { echo "Processing: $hook" # shellcheck disable=SC1090 - source "$hook" + if ! source "$hook"; then + >&2 echo 'WARNING: hook failure, bypassed' + fi done }