From 78ddf297073d75c9376e6cebe3c9688e6aba23af Mon Sep 17 00:00:00 2001 From: Min Jin Date: Tue, 20 May 2025 11:12:38 -0700 Subject: [PATCH] fixes generate workflow - linux compatible patch command Signed-off-by: Min Jin --- .github/workflows/generate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index c3616798ee..6264690e4f 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -80,7 +80,7 @@ jobs: - name: Apply Manual Diffs if: ${{ github.event.inputs.skip_patches != 'true' }} run: | - ls scripts/patches/*.diff | xargs -I {} patch -p0 -i {} + ls scripts/patches/*.diff | xargs -I {} bash -xc 'patch -p1 < "{}"' git add *.java git commit -s -m 'Applied patches under scripts/patches/*.diff' - name: Generate Fluent