cargo fmt

This commit is contained in:
Chris Beck
2025-12-18 14:07:33 -07:00
parent 93544c3eef
commit c2794dcb1d
+4 -3
View File
@@ -209,9 +209,10 @@ fn extract_files(
// Apply glob filter if configured
if let Some(glob_filter) = glob_filter
&& !glob_filter.is_match(&path) {
continue;
}
&& !glob_filter.is_match(&path)
{
continue;
}
// Read file contents
let mut contents = Vec::new();