33 lines
893 B
Diff
33 lines
893 B
Diff
From 4952d5f8bdf8ed801d2a449f589592d0d6356833 Mon Sep 17 00:00:00 2001
|
|
From: Richard Hughes <richard@hughsie.com>
|
|
Date: Wed, 13 Jan 2021 09:58:16 +0000
|
|
Subject: [PATCH 03/11] Ask the user to reboot when required if downgrading
|
|
|
|
This matches the behaviour of install and reinstall.
|
|
---
|
|
src/fu-util.c | 8 +++++++-
|
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
|
|
|
diff --git src/fu-util.c src/fu-util.c
|
|
index 05f429bf..d5936e65 100644
|
|
--- src/fu-util.c
|
|
+++ src/fu-util.c
|
|
@@ -1835,7 +1835,13 @@ fu_util_downgrade (FuUtilPrivate *priv, gchar **values, GError **error)
|
|
if (!fu_util_maybe_send_reports (priv, remote_id, error))
|
|
return FALSE;
|
|
|
|
- return TRUE;
|
|
+ /* we don't want to ask anything */
|
|
+ if (priv->no_reboot_check) {
|
|
+ g_debug ("skipping reboot check");
|
|
+ return TRUE;
|
|
+ }
|
|
+
|
|
+ return fu_util_prompt_complete (priv->completion_flags, TRUE, error);
|
|
}
|
|
|
|
static gboolean
|
|
--
|
|
2.29.2
|
|
|