don't fail on fwupdmgr exit status

This commit is contained in:
z0rc 2024-03-17 18:33:59 +01:00
parent 0f4fab08a5
commit fe400816df
1 changed files with 3 additions and 1 deletions

View File

@ -1,8 +1,10 @@
#!/bin/bash
set -eEuxo pipefail
# Don't fail on error due to the brain-damaged exit status of fwupdmgr
set -Euxo pipefail
sudo fwupdmgr refresh --force
sudo fwupdmgr update
exit 0