Skip to content

Commit

Permalink
Merge pull request #797 from cgwalters/ext-update
Browse files Browse the repository at this point in the history
Update to ostree-ext 0.15
  • Loading branch information
jeckersb committed Sep 19, 2024
2 parents a821bc1 + a8737d9 commit 85b2ca5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 31 deletions.
42 changes: 13 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ anstyle = "1.0.6"
anyhow = { workspace = true }
bootc-utils = { path = "../utils" }
camino = { workspace = true, features = ["serde1"] }
ostree-ext = { version = "0.14.0" }
ostree-ext = { version = "0.15.0" }
chrono = { workspace = true, features = ["serde"] }
clap = { workspace = true, features = ["derive","cargo"] }
clap_mangen = { version = "0.2.20", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion lib/src/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ async fn handle_layer_progress_print(
byte_bar.reset_eta();
byte_bar.set_length(layer_size);
let layer_type = prefix_of_progress(&l);
let short_digest = &layer.digest()[0..21];
let short_digest = &layer.digest().digest()[0..21];
byte_bar.set_message(format!("{layer_type} {short_digest}"));
} else {
byte_bar.set_position(layer_size);
Expand Down

0 comments on commit 85b2ca5

Please sign in to comment.