Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Sep 16, 2024
1 parent 8b2c1bc commit d7588d3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions buildpacks/ruby/src/layers/bundle_install_layer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,16 @@ pub(crate) fn bundle_install_gems(
}
UpdateState::Skip(ref sources) => {
bullet = bullet.sub_bullet(format!(
"Skipping bundle install (no changes found in {sources})",
"Skipping {bundle_install} (no changes found in {sources})",
bundle_install = style::command("bundle install"),
sources = SentenceList::new(sources).join_str("or")
));

bullet = bullet.sub_bullet(format!(
"{help}: To force run bundle install set {env_var}",
"{help}: To force run {bundle_install} set {env_var}",
help = style::important("HELP:"),
env_var = style::value(format!("{HEROKU_SKIP_BUNDLE_DIGEST}=1"))
env_var = style::value(format!("{HEROKU_SKIP_BUNDLE_DIGEST}=1")),
bundle_install = style::command("bundle install"),
));
}
}
Expand Down

0 comments on commit d7588d3

Please sign in to comment.