Update CVE patchers

TODO: enable CVE-2023-31084/4.4

Signed-off-by: Tad <tad@spotco.us>
This commit is contained in:
Tad 2023-07-15 21:22:18 -04:00
parent aa6bfad801
commit b6308caa37
No known key found for this signature in database
GPG key ID: B286E9F57A07424B
39 changed files with 81 additions and 44 deletions

View file

@ -23,7 +23,8 @@ export -f startPatcher;
resetWorkspace() {
umask 0022;
repo forall -c 'git add -A && git reset --hard' && rm -rf out DOS_PATCHED_FLAG && repo sync -j8 --force-sync --detach;
if [ "$1" == "local" ]; then local noNetwork="--local-only"; fi;
repo forall -c 'git add -A && git reset --hard' && rm -rf out DOS_PATCHED_FLAG && repo sync --jobs-network=6 --jobs-checkout=12 --force-sync --detach $noNetwork;
}
export -f resetWorkspace;