From c1a5f7f3926552ecf4a50e988409b01f8c02d7e9 Mon Sep 17 00:00:00 2001 From: Schneems Date: Wed, 15 May 2024 15:29:09 -0500 Subject: [PATCH] Consistent cache clear messages --- buildpacks/ruby/src/layers/bundle_install_layer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildpacks/ruby/src/layers/bundle_install_layer.rs b/buildpacks/ruby/src/layers/bundle_install_layer.rs index 26451d54..368a0ca2 100644 --- a/buildpacks/ruby/src/layers/bundle_install_layer.rs +++ b/buildpacks/ruby/src/layers/bundle_install_layer.rs @@ -246,7 +246,7 @@ 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 @@ -254,7 +254,7 @@ impl Layer for BundleInstallLayer<'_> { 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