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.

[autofix.ci] apply automated fixes

authored by

autofix-ci[bot] and committed by
GitHub
2afefdb7 ee900729

+21 -4
+18 -2
wire/lib/src/hive/mod.rs
··· 105 105 write!(f, " > {}", "Connection:".bold())?; 106 106 writeln!(f, " {{{}}}", node.target)?; 107 107 108 - write!(f, " > {} {}{}", "Build remotely".bold(), "`deployment.buildOnTarget`".if_supports_color(Stream::Stdout, |x| x.dimmed()).italic(), ":".bold())?; 108 + write!( 109 + f, 110 + " > {} {}{}", 111 + "Build remotely".bold(), 112 + "`deployment.buildOnTarget`" 113 + .if_supports_color(Stream::Stdout, |x| x.dimmed()) 114 + .italic(), 115 + ":".bold() 116 + )?; 109 117 writeln!(f, " {}", node.build_remotely)?; 110 118 111 - write!(f, " > {} {}{}", "Local apply allowed".bold(), "`deployment.allowLocalDeployment`".if_supports_color(Stream::Stdout, |x| x.dimmed()).italic(), ":".bold())?; 119 + write!( 120 + f, 121 + " > {} {}{}", 122 + "Local apply allowed".bold(), 123 + "`deployment.allowLocalDeployment`" 124 + .if_supports_color(Stream::Stdout, |x| x.dimmed()) 125 + .italic(), 126 + ":".bold() 127 + )?; 112 128 writeln!(f, " {}", node.allow_local_deployment)?; 113 129 114 130 if !node.keys.is_empty() {
+3 -2
wire/lib/src/hive/steps/keys.rs
··· 13 13 use std::env; 14 14 use std::fmt::Display; 15 15 use std::io::Cursor; 16 - use std::path::{PathBuf}; 16 + use std::path::PathBuf; 17 17 use std::pin::Pin; 18 18 use std::process::Stdio; 19 19 use std::str::from_utf8; ··· 72 72 Source::String(_) => "Literal", 73 73 Source::Path(_) => "Path", 74 74 Source::Command(_) => "Command", 75 - }.if_supports_color(owo_colors::Stream::Stdout, |x| x.dimmed()), 75 + } 76 + .if_supports_color(owo_colors::Stream::Stdout, |x| x.dimmed()), 76 77 [self.dest_dir.clone(), self.name.clone()] 77 78 .iter() 78 79 .collect::<PathBuf>()