Fix new clippy warnings

This commit is contained in:
René Kijewski 2025-08-07 20:55:28 +02:00
parent 98ad5d5b3f
commit 1014b975cd

View File

@ -18,14 +18,14 @@ fn ui() {
}; };
let target_crate_root = manifest_dir.join("../target/tests/trybuild/askama_testing"); let target_crate_root = manifest_dir.join("../target/tests/trybuild/askama_testing");
if !target_crate_root.exists() { if !target_crate_root.exists()
if let Err(err) = std::fs::create_dir_all(&target_crate_root) { && let Err(err) = std::fs::create_dir_all(&target_crate_root)
{
panic!( panic!(
"failed to create folder `{}`: {err:?}", "failed to create folder `{}`: {err:?}",
target_crate_root.display() target_crate_root.display()
); );
} }
}
let target_crate_root = target_crate_root.canonicalize().unwrap(); let target_crate_root = target_crate_root.canonicalize().unwrap();
let symlink = |name: &str| { let symlink = |name: &str| {
@ -46,10 +46,10 @@ fn ui() {
// soft-link toml configs // soft-link toml configs
for entry in manifest_dir.read_dir().unwrap().filter_map(Result::ok) { for entry in manifest_dir.read_dir().unwrap().filter_map(Result::ok) {
if let Some(name) = entry.file_name().to_str() { if let Some(name) = entry.file_name().to_str()
if name != "Cargo.toml" || !name.ends_with(".toml") { && (name != "Cargo.toml" || !name.ends_with(".toml"))
{
symlink(name); symlink(name);
} }
} }
} }
}