ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix local nodes attempting to ssh to itself

+6 -4
+5
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] - yyyy-mm-dd 9 9 10 + ### Fixed 11 + 12 + - Fix a bug where wire was attempting to SSH to the local machine when `buildOnTarget` & 13 + `allowLocalDeployment` where true. 14 + 10 15 ## [v1.1.0] - 2025-12-31 11 16 12 17 ### Added
+1 -4
crates/core/src/hive/steps/build.rs
··· 51 51 let status = run_command_with_env( 52 52 &CommandArguments::new(command_string, ctx.modifiers) 53 53 // build remotely if asked for AND we arent applying locally 54 - // 55 - // (building remotely but applying locally does not logically 56 - // make any sense) 57 54 .execute_on_remote( 58 55 if ctx.node.build_remotely 59 56 && let Objective::Apply(apply_objective) = ctx.objective 60 - && apply_objective.should_apply_locally 57 + && !apply_objective.should_apply_locally 61 58 { 62 59 Some(&ctx.node.target) 63 60 } else {