Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed May 17, 2024
1 parent 2d874fb commit d748cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildpacks/ruby/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ fn amd_arm_builder_config(builder_name: &str, app_dir: &str) -> BuildConfig {

match builder_name {
"heroku/builder:24" if cfg!(target_arch = "aarch64") => {
builder.target_triple("aarch64-unknown-linux-musl")
config.target_triple("aarch64-unknown-linux-musl")
}
_ => builder.target_triple("x86_64-unknown-linux-musl"),
_ => config.target_triple("x86_64-unknown-linux-musl"),
};
config
}

0 comments on commit d748cb4

Please sign in to comment.