chore(cargo): address clippy warnings

This commit is contained in:
LGUG2Z
2026-05-01 15:16:18 -07:00
parent 53ad7a2224
commit 588d22a9d2
5 changed files with 21 additions and 29 deletions
+5 -7
View File
@@ -1924,13 +1924,11 @@ fn main() -> eyre::Result<()> {
"Application specific configuration file path has not been set. Try running 'komorebic fetch-asc'\n"
);
}
Some(AppSpecificConfigurationPath::Single(path)) => {
if !path.exists() {
println!(
"Application specific configuration file path '{}' does not exist. Try running 'komorebic fetch-asc'\n",
path.display()
);
}
Some(AppSpecificConfigurationPath::Single(path)) if !path.exists() => {
println!(
"Application specific configuration file path '{}' does not exist. Try running 'komorebic fetch-asc'\n",
path.display()
);
}
_ => {}
}