don't fail on fwupdmgr exit status

This commit is contained in:
z0rc 2024-03-17 18:33:59 +01:00
parent 78d0653312
commit 6a45fed971

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