mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-11 09:18:20 +03:00
lib/sysroot: fix placement for not-default deployment
When using the OSTREE_SYSROOT_SIMPLE_WRITE_DEPLOYMENT_FLAGS_NOT_DEFAULT flag, the deployment is said to be added after the booted or merge deployment. Fix the condition to do so instead of adding it in the second place. Closes: #1097 Approved by: cgwalters
This commit is contained in:
parent
1e5b06be5b
commit
ca61a2bd9d
@ -1545,7 +1545,7 @@ ostree_sysroot_simple_write_deployment (OstreeSysroot *sysroot,
|
||||
g_ptr_array_add (new_deployments, g_object_ref (deployment));
|
||||
}
|
||||
|
||||
if (!added_new)
|
||||
if ((!added_new) && is_merge_or_booted)
|
||||
{
|
||||
g_ptr_array_add (new_deployments, g_object_ref (new_deployment));
|
||||
added_new = TRUE;
|
||||
|
Loading…
Reference in New Issue
Block a user