[TOOLS] In pre-commit hook, only run php-doc-check if some PHP file changed

This commit is contained in:
Hugo Sales 2021-04-16 15:52:47 +00:00
parent 081b0de919
commit 1d6d20aacb
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 4 additions and 5 deletions

View File

@ -12,10 +12,7 @@ for staged in ${staged_files}; do
if [ -f "${staged}" ] && [[ "${staged}" = *.php ]]
then
# use php-cs-fixer and get flag of correction
"${root}/bin/php-cs-fixer" -q fix "${staged}"
# if php-cs-fixer fix works, it returns 0
if [ "$?" -eq 0 ]
if "${root}/bin/php-cs-fixer" -q fix "${staged}"
then
git add "${staged}" # execute git add directly
fi
@ -24,7 +21,9 @@ done
echo "Running php-doc-checker"
"${root}/bin/php-doc-check" src plugins components
if echo "${staged_files}" | grep -F ".php"; then
"${root}/bin/php-doc-check" src plugins components
fi
# Only commit if there wasn't an error
exit $?