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
ee87ff38 714bf751

+6 -3
+4 -1
wire/lib/build.rs
··· 189 189 .wrap_err("creating target directory")?; 190 190 fs::write( 191 191 Path::new(&md_out_dir).join("DIAGNOSTICS.md"), 192 - entries.iter().map(std::string::ToString::to_string).join("\n\n"), 192 + entries 193 + .iter() 194 + .map(std::string::ToString::to_string) 195 + .join("\n\n"), 193 196 ) 194 197 .into_diagnostic() 195 198 .wrap_err("writing DIAGNOSTICS.md")?;
+2 -2
wire/lib/src/hive/node.rs
··· 257 257 } 258 258 } 259 259 260 - #[must_use] 260 + #[must_use] 261 261 pub fn should_apply_locally(allow_local_deployment: bool, name: &str) -> bool { 262 262 *name == *gethostname() && allow_local_deployment 263 263 } ··· 356 356 } 357 357 358 358 impl<'a> GoalExecutor<'a> { 359 - #[must_use] 359 + #[must_use] 360 360 pub fn new(context: Context<'a>) -> Self { 361 361 Self { 362 362 steps: vec![