From 5989685df582c5ae1e2fdb1637d6616ad4f2204b Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Sat, 24 Apr 2021 06:04:52 +0300 Subject: [PATCH] Use fwupdmgr update instead of upgrade (fix #695) --- src/steps/os/linux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/linux.rs b/src/steps/os/linux.rs index f848491b..38d75233 100644 --- a/src/steps/os/linux.rs +++ b/src/steps/os/linux.rs @@ -521,7 +521,7 @@ pub fn run_fwupdmgr(ctx: &ExecutionContext) -> Result<()> { let mut upgrade = ctx.run_type().execute(&fwupdmgr); - upgrade.arg("upgrade"); + upgrade.arg("update"); if ctx.config().yes() { upgrade.arg("-y"); }