Tools/lint.sh: lint all of Source, not just Core

This commit is contained in:
Michael M 2017-08-13 19:03:21 -07:00
parent 7d791cb6f6
commit 4c92d8c81e
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ for f in ${modified_files}; do
if ! echo "${f}" | egrep -q "[.](cpp|h|mm)$"; then if ! echo "${f}" | egrep -q "[.](cpp|h|mm)$"; then
continue continue
fi fi
if ! echo "${f}" | egrep -q "^Source/Core"; then if ! echo "${f}" | egrep -q "^Source"; then
continue continue
fi fi