more code

This commit is contained in:
Hongze Cheng 2022-10-13 17:06:04 +08:00
parent c6011a3257
commit a014be5ca9
1 changed files with 1 additions and 1 deletions

2
tools/scripts/codeFormat.sh Normal file → Executable file
View File

@ -27,7 +27,7 @@ EXCLUDE_FILE_LIST=(
)
for d in ${FORMAT_DIR_LIST[@]}; do
for f in $(find $d -type f -not -name "*/sql.c" -regex '.*\.\(cpp\|hpp\|c\|h\)'); do
for f in $(find $d -type f -not -name '*sql.c' -regex '.*\.\(cpp\|hpp\|c\|h\)'); do
${FORMAT_BIN} -i $f
done
done