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 a85fc19 commit c40bfb7Copy full SHA for c40bfb7
Makefile
@@ -434,8 +434,10 @@ build/docker_ci_image:
434
touch build/docker_ci_image
435
436
patch_duckdb:
437
- find patches/duckdb/* -type f -name '*.patch' -print0 | xargs -0 cat | patch -p1 --forward -d submodules/duckdb
438
- find patches/arrow/* -type f -name '*.patch' -print0 | xargs -0 cat | patch -p1 --forward -d submodules/arrow
+ (find patches/duckdb/* -type f -name '*.patch' -print0 | xargs -0 cat | patch -p1 --forward -d submodules/duckdb) || true
+ (find patches/arrow/* -type f -name '*.patch' -print0 | xargs -0 cat | patch -p1 --forward -d submodules/arrow) || true
439
+
440
+apply_patches: patch_duckdb
441
442
submodules:
443
git submodule update --init --recursive
0 commit comments