Răsfoiți Sursa

ci: fix incorrect path in kernel patch workflow

The path to the kernel patch file was incorrect, pointing to "../../../kernel_patches" instead of "../../kernel_patches". This fixes the path to ensure the patch is applied correctly during the build process.
TheWildJames 1 an în urmă
părinte
comite
0f2b7220b8
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      .github/workflows/build.yml

+ 1 - 1
.github/workflows/build.yml

@@ -130,7 +130,7 @@ jobs:
         run: |
           cd "$CONFIG/common"
           echo "Patching ptrace!"
-          patch -p1 -F 3 < "../../../kernel_patches/gki_ptrace.patch"
+          patch -p1 -F 3 < "../../kernel_patches/gki_ptrace.patch"
 
       - name: Determine the branch for KernelSU
         run: |