Don't bail when devices are missing

Signed-off-by: Tad <tad@spotco.us>
This commit is contained in:
Tad 2023-03-07 23:41:14 -05:00
parent 7e3bbc174a
commit 097019193e
No known key found for this signature in database
GPG key ID: B286E9F57A07424B
8 changed files with 31 additions and 31 deletions

View file

@ -36,7 +36,7 @@ echo "Patching CVEs...";
cd "$DOS_BUILD_BASE";
for patcher in "$DOS_SCRIPTS_CVES"/*.sh; do
echo "Running $patcher";
source "$patcher";
source "$patcher" || true;
done;
cd "$DOS_BUILD_BASE";