[TOOLS] In pre-commit hook, only run php-doc-check if some PHP file changed
This commit is contained in:
parent
081b0de919
commit
1d6d20aacb
|
@ -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 $?
|
||||
|
|
Loading…
Reference in New Issue
Block a user