Clippy tweaks to new build script
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-06-30 16:11:21 +02:00
parent 189dc89e67
commit 653de5c919

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();
} }
_ => {}
}
} }
} }
} }