11 lines
154 B
Bash
Executable File
11 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
# Don't fail on error due to the brain-damaged exit status of fwupdmgr
|
|
set -Euxo pipefail
|
|
|
|
|
|
fwupdmgr refresh --force
|
|
fwupdmgr update
|
|
exit 0
|