linting fix

This commit is contained in:
aodenis 2025-02-20 00:47:36 +01:00
parent 45c6a1d972
commit 3fbde6c4d8

View File

@ -253,11 +253,11 @@ impl Watcher {
};
// Never recompile because the output file changed.
return type_relevant
type_relevant
&& !event
.paths
.iter()
.all(|path| is_same_file(path, &self.output).unwrap_or(false));
.all(|path| is_same_file(path, &self.output).unwrap_or(false))
}
}