From a0221a43a5952ebec9910613ea090cfae90b815d Mon Sep 17 00:00:00 2001 From: DarkFeather Date: Mon, 29 Sep 2025 14:41:05 -0500 Subject: [PATCH] Adding a line to show that a local script is running --- Hooks/scripts.d/local-hooks | 1 + 1 file changed, 1 insertion(+) diff --git a/Hooks/scripts.d/local-hooks b/Hooks/scripts.d/local-hooks index d2a2d70..087aac1 100755 --- a/Hooks/scripts.d/local-hooks +++ b/Hooks/scripts.d/local-hooks @@ -3,6 +3,7 @@ if [ -d precommit-hooks ]; then for script in `find precommit-hooks -type f`; do + echo Running "$script" if ! bash "$script"; then echo "Local script $script failed checks." exit 1