confpub/update-scripts/update-fw.sh

11 lines
154 B
Bash
Raw Normal View History

2024-01-22 16:05:42 +00:00
#!/bin/bash
2024-03-17 17:33:59 +00:00
# Don't fail on error due to the brain-damaged exit status of fwupdmgr
set -Euxo pipefail
2024-01-22 16:05:42 +00:00
fwupdmgr refresh --force
fwupdmgr update
2024-03-17 17:33:59 +00:00
exit 0