config: add apply_patch_changes function

This commit is contained in:
Ark74 2025-04-14 01:47:16 -06:00
parent d703c69384
commit c7b19a492f

View file

@ -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
}