Clippy tweaks to new build script
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2023-06-30 16:11:21 +02:00
parent 189dc89e67
commit 653de5c919
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 8 additions and 11 deletions

View File

@ -110,8 +110,7 @@ fn write_scripts(path: &str, output_file: &mut std::fs::File) {
}) })
.collect::<Vec<_>>(); .collect::<Vec<_>>();
for script_impl in script_impls { for script_impl in script_impls {
match script_impl.self_ty.as_ref() { if let syn::Type::Path(p) = script_impl.self_ty.as_ref() {
syn::Type::Path(p) => {
let ident = p.path.segments[0].ident.to_string(); let ident = p.path.segments[0].ident.to_string();
writeln!( writeln!(
output_file, output_file,
@ -120,8 +119,6 @@ fn write_scripts(path: &str, output_file: &mut std::fs::File) {
) )
.unwrap(); .unwrap();
} }
_ => {}
}
} }
} }
} }