coolify/hooks/pre-commit

19 lines
449 B
Text
Raw Normal View History

2024-09-23 18:45:42 +00:00
#!/bin/sh
# Detect whether /dev/tty is available & functional
if sh -c ": >/dev/tty" >/dev/null 2>/dev/null; then
exec < /dev/tty
fi
$(pwd)/vendor/bin/pint $@
# Get the list of files that were modified by Pint
modified_files=$(git diff --name-only --cached)
2024-09-23 18:49:26 +00:00
echo $modified_files
# Add the modified files back to the staging area
if [ -n "$modified_files" ]; then
echo "Adding fixed files to the commit..."
git add $modified_files
fi