config: add apply_patch_changes function

This commit is contained in:
Ark74 2025-04-14 01:47:16 -06:00
parent 2ed14cf856
commit 50fabd3635

View file

@ -353,3 +353,11 @@ for FILE in "${FILES[@]}"; do
fi fi
done 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
}