Adding a line to show that a local script is running

This commit is contained in:
2025-09-29 14:41:05 -05:00
parent e4ac1b6517
commit a0221a43a5

View File

@@ -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