We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e27609 commit 6a41626Copy full SHA for 6a41626
duckdb_pglake/Makefile
@@ -142,6 +142,11 @@ patch_duckdb:
142
while read -r patch; do \
143
patch -l -p1 -N < "$$patch" || [ $$? -eq 1 ]; \
144
done
145
+ # checking for any rejected patches
146
+ echo "#### hunks rejected:"
147
+ cat $(find . -name '*.rej')
148
+ echo "#### done with hunks rejected"
149
+
150
151
format:
152
find src/ -iname *.hpp -o -iname *.cpp | xargs clang-format --sort-includes=0 -style=file -i
0 commit comments