···4040- A node which is going to be applied locally will now never `push` or
4141 `cleanup`.
4242- `show` subcommand looks nicer now.
4343+- `build` step will always build remotely when the node is going to be applied
4444+ locally.
43454446### Documented
4547
+4-1
wire/lib/src/hive/steps/build.rs
···36363737 let status = run_command_with_env(
3838 &CommandArguments::new(command_string, ctx.modifiers)
3939- .on_target(if ctx.node.build_remotely {
3939+ // build remotely if asked for AND we arent applying locally
4040+ // building remotely but applying locally does not logically
4141+ // make any sense
4242+ .on_target(if ctx.node.build_remotely && !ctx.should_apply_locally {
4043 Some(&ctx.node.target)
4144 } else {
4245 None