Skip to content

Commit

Permalink
Consistent cache clear messages
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed May 15, 2024
1 parent 4025cb4 commit c1a5f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildpacks/ruby/src/layers/bundle_install_layer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,15 +246,15 @@ impl Layer for BundleInstallLayer<'_> {
Changed::DistroVersion(old, now) => {
log_step(format!(
"Clearing cache {}",
fmt::details(format!("distro version: {old} to {now}"))
fmt::details(format!("distro version changed: {old} to {now}"))
));

clear_and_run
}
Changed::CpuArchitecture(old, now) => {
log_step(format!(
"Clearing cache {}",
fmt::details(format!("cpu architecture: {old} to {now}"))
fmt::details(format!("cpu architecture changed: {old} to {now}"))
));

clear_and_run
Expand Down

0 comments on commit c1a5f7f

Please sign in to comment.