git-hook-template: minor output formatting

This commit is contained in:
Adrian Duke 2026-04-08 18:28:34 +01:00 committed by Fintan Halpenny
parent 4e0f739c29
commit 1df1acabfa
1 changed files with 2 additions and 4 deletions

View File

@ -28,7 +28,7 @@ if [ ${#CHANGED_FILES[@]} -gt 0 ]; then
# Read from /dev/tty because stdin is not attached to the terminal in Git hooks. # Read from /dev/tty because stdin is not attached to the terminal in Git hooks.
exec < /dev/tty exec < /dev/tty
read -r -p "Do you want to continue executing the ${HOOK_NAME} hooks? [y/N] " response read -r -p "⚠️ Do you want to continue executing the '${HOOK_NAME}' hook? [y/N] " response
case "$response" in case "$response" in
[yY][eE][sS]|[yY]) [yY][eE][sS]|[yY])
echo "Continuing with '${HOOK_NAME}' hook..." echo "Continuing with '${HOOK_NAME}' hook..."
@ -42,14 +42,12 @@ fi
# Execute the appropriate just recipe based on the hook name # Execute the appropriate just recipe based on the hook name
if [ "$HOOK_NAME" = "pre-commit" ]; then if [ "$HOOK_NAME" = "pre-commit" ]; then
echo "Running pre-commit checks..."
just pre-commit just pre-commit
elif [ "$HOOK_NAME" = "pre-push" ]; then elif [ "$HOOK_NAME" = "pre-push" ]; then
echo "Running pre-push checks..."
just pre-push just pre-push
elif [ "$HOOK_NAME" = "post-checkout" ]; then elif [ "$HOOK_NAME" = "post-checkout" ]; then
just post-checkout just post-checkout
else else
echo "Unknown hook: $HOOK_NAME" echo "⚠️ Unknown hook: $HOOK_NAME"
exit 1 exit 1
fi fi