Skip to content

Commit c3eee16

Browse files
committed
lib: Bump to ostree-ext 0.11.5
And note the new `require_bootable()`, since we couldn't require that in the container image importer. Signed-off-by: Colin Walters <[email protected]>
1 parent 89dd1ff commit c3eee16

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rust-version = "1.64.0"
1111
[dependencies]
1212
anyhow = "1.0"
1313
camino = { version = "1.0.4", features = ["serde1"] }
14-
ostree-ext = "0.11.2"
14+
ostree-ext = "0.11.5"
1515
clap = { version= "4.2", features = ["derive"] }
1616
clap_mangen = { version = "0.2", optional = true }
1717
cap-std-ext = "2"

lib/src/cli.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ async fn upgrade(opts: UpgradeOpts) -> Result<()> {
283283
let imgref = &OstreeImageReference::from(imgref.clone());
284284
let mut imp =
285285
ostree_container::store::ImageImporter::new(&sysroot.repo(), imgref, config).await?;
286+
imp.require_bootable();
286287
match imp.prepare().await? {
287288
PrepareResult::AlreadyPresent(c) => {
288289
println!(

0 commit comments

Comments
 (0)