Parcourir la source

Fix patch file path variable assignment

jimsterino98 il y a 4 mois
Parent
commit
27d2904479
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      .github/actions/susfs-patches/action.yml

+ 1 - 1
.github/actions/susfs-patches/action.yml

@@ -60,7 +60,7 @@ runs:
       rm -rf 50_add_susfs_in_gki-${{ inputs.android_version }}-${{ inputs.kernel_version }}.patch
 
       shopt -s nullglob
-      patches=("KERNEL_PATCHES/samsung/${{ inputs.branch }}"/*.patch)
+      patches=("$KERNEL_PATCHES/samsung/${{ inputs.branch }}"/*.patch)
       
       if [ ${#patches[@]} -gt 0 ]; then
        echo "Patches found, applying..."