From c7b19a492f6a6fc9b6ae76c321045af383af40d9 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Mon, 14 Apr 2025 01:47:16 -0600 Subject: [PATCH] config: add apply_patch_changes function --- helpers/config | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/helpers/config b/helpers/config index e64b6f7..838b52e 100755 --- a/helpers/config +++ b/helpers/config @@ -356,3 +356,11 @@ for FILE in "${FILES[@]}"; do fi done } + +# Set function to apply patches from known directory. +apply_patch_changes() { +for patch in $(ls -v ${DATA}/patch_changes/*.patch) +do + patch_p1 $patch +done +}