Skip to content

Commit c40bfb7

Browse files
committed
Add alternative name
1 parent a85fc19 commit c40bfb7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,10 @@ build/docker_ci_image:
434434
touch build/docker_ci_image
435435

436436
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
437+
(find patches/duckdb/* -type f -name '*.patch' -print0 | xargs -0 cat | patch -p1 --forward -d submodules/duckdb) || true
438+
(find patches/arrow/* -type f -name '*.patch' -print0 | xargs -0 cat | patch -p1 --forward -d submodules/arrow) || true
439+
440+
apply_patches: patch_duckdb
439441

440442
submodules:
441443
git submodule update --init --recursive

0 commit comments

Comments
 (0)