From 5bda0412c00a31865416c7fb00cef3efadeb3982 Mon Sep 17 00:00:00 2001 From: Aditya Garg <85610623+AdityaGarg8@users.noreply.github.com> Date: Thu, 27 Feb 2025 01:09:48 +0530 Subject: [PATCH] Remove unecessary check to not use 000x patches --- patch_driver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch_driver.sh b/patch_driver.sh index 285253d..519906a 100755 --- a/patch_driver.sh +++ b/patch_driver.sh @@ -22,4 +22,4 @@ git checkout ${T2_PATCHES_COMMIT_HASH} while IFS= read -r file; do echo "==> Adding ${file}" cp -rfv "${file}" "${WORKING_PATH}"/patches/"${file##*/}" -done < <(find "${BUILD_PATH}/linux-mbp-arch" -type f -name "*.patch" | grep -vE '000[0-9]') +done < <(find "${BUILD_PATH}/linux-mbp-arch" -type f -name "*.patch")