Skip to content

Commit

Permalink
(clan-tidy) fix script not finding postgres.h
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Oct 9, 2024
1 parent 4073295 commit b9210ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/tidy-vs-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if [ ${#MODIFIED_HEADERS[@]} != 0 ] ; then
for f in ${MODIFIED_HEADERS}
do
echo "${f}"
clang-tidy "${CHECKS}" -header-filter=.* "${f}" \
-- -I./include "${POSTGRES_SERVER}"
echo clang-tidy "${CHECKS}" -header-filter=.* "${f}" -- -I./include "${POSTGRES_SERVER}"
clang-tidy "${CHECKS}" -header-filter=.* "${f}" -- -I./include ${POSTGRES_SERVER}
done
fi

0 comments on commit b9210ab

Please sign in to comment.