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 bug where --non-interactive was inversed

+5 -1
+4
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] - yyyy-mm-dd 9 9 10 + ### Fixed 11 + 12 + - Fix bug where --non-interactive was inversed 13 + 10 14 ### Changed 11 15 12 16 - Logs with level `tracing_level::TRACE` are compiled out of release builds
+1 -1
wire/lib/src/commands/mod.rs
··· 31 31 output_mode: ChildOutputMode, 32 32 modifiers: SubCommandModifiers, 33 33 ) -> Result<Either<InteractiveCommand<'_>, NonInteractiveCommand<'_>>, HiveLibError> { 34 - if modifiers.non_interactive { 34 + if !modifiers.non_interactive { 35 35 return Ok(Either::Left( 36 36 InteractiveCommand::spawn_new(target, output_mode).await?, 37 37 ));