lib/deploy: Add semi-colon in post-deployment msg
Let's add a semi-colon between the "bootconfig swap" part and the "deployment count change" to make it more clear they're separate statements. Closes: #1575 Approved by: cgwalters
This commit is contained in:
parent
956618a188
commit
bd904b26e1
|
|
@ -2352,7 +2352,7 @@ ostree_sysroot_write_deployments_with_options (OstreeSysroot *self,
|
||||||
}
|
}
|
||||||
|
|
||||||
{ g_autofree char *msg =
|
{ g_autofree char *msg =
|
||||||
g_strdup_printf ("%s; bootconfig swap: %s deployment count change: %i",
|
g_strdup_printf ("%s; bootconfig swap: %s; deployment count change: %i",
|
||||||
(bootloader_is_atomic ? "Transaction complete" : "Bootloader updated"),
|
(bootloader_is_atomic ? "Transaction complete" : "Bootloader updated"),
|
||||||
requires_new_bootversion ? "yes" : "no",
|
requires_new_bootversion ? "yes" : "no",
|
||||||
new_deployments->len - self->deployments->len);
|
new_deployments->len - self->deployments->len);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue