12 lines
172 B
Bash
Executable File
12 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
echo -e "\e[32mUpdate Firmware\e[0m"
|
|
|
|
if nomarchy-cmd-missing fwupdmgr; then
|
|
nomarchy-pkg-add fwupd
|
|
fi
|
|
|
|
fwupdmgr refresh --force
|
|
sudo fwupdmgr update
|