···7788## [Unreleased] - yyyy-mm-dd
991010+### Fixed
1111+1212+- Fix a bug where wire was attempting to SSH to the local machine when `buildOnTarget` &
1313+ `allowLocalDeployment` where true.
1414+1015## [v1.1.0] - 2025-12-31
11161217### Added
+1-4
crates/core/src/hive/steps/build.rs
···5151 let status = run_command_with_env(
5252 &CommandArguments::new(command_string, ctx.modifiers)
5353 // build remotely if asked for AND we arent applying locally
5454- //
5555- // (building remotely but applying locally does not logically
5656- // make any sense)
5754 .execute_on_remote(
5855 if ctx.node.build_remotely
5956 && let Objective::Apply(apply_objective) = ctx.objective
6060- && apply_objective.should_apply_locally
5757+ && !apply_objective.should_apply_locally
6158 {
6259 Some(&ctx.node.target)
6360 } else {