confpub/update-scripts/update-fw.sh

11 lines
164 B
Bash
Executable File

#!/bin/bash
# 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