Skip to content

Commit

Permalink
deploy: Use alternative format for staging
Browse files Browse the repository at this point in the history
Followup to e3db010
where this one was missed.  Copy-pasting that git log
for ease of consumption:

Same motivation as ostreedev/ostree-rs-ext#604

Because fetching from a registry with the default sigverify is
the 90% case default, when we see this (and are formatting for
human consumption), use the "alternate" formatting to just
display the image name.

This makes the ostree stuff *much* less in the user's face
in the default path.

Signed-off-by: Colin Walters <walters@verbum.org>
  • Loading branch information
cgwalters committed Mar 18, 2024
1 parent 983ffa0 commit 893591f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ pub(crate) async fn stage(
)
.await?;
crate::deploy::cleanup(sysroot).await?;
println!("Queued for next boot: {}", spec.image);
println!("Queued for next boot: {:#}", spec.image);
if let Some(version) = image.version.as_deref() {
println!(" Version: {version}");
}
Expand Down

0 comments on commit 893591f

Please sign in to comment.