trivial: Show the update image in the CLI output

This commit is contained in:
Richard Hughes 2022-03-23 15:49:20 +00:00
parent 17c04e9824
commit 89e561c837

View File

@ -1855,6 +1855,13 @@ fu_util_release_to_string(FwupdRelease *rel, guint idt)
_("Update Message"), _("Update Message"),
fwupd_release_get_update_message(rel)); fwupd_release_get_update_message(rel));
} }
if (fwupd_release_get_update_image(rel) != NULL) {
fu_common_string_append_kv(str,
idt + 1,
/* TRANSLATORS: helpful image for the update */
_("Update Image"),
fwupd_release_get_update_image(rel));
}
/* TRANSLATORS: release attributes */ /* TRANSLATORS: release attributes */
title = _("Release Flags"); title = _("Release Flags");