We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d8bf4d + 1aa7510 commit 1e48e64Copy full SHA for 1e48e64
src/cobalt_model/files.rs
@@ -91,6 +91,7 @@ impl<'a> FilesIterator<'a> {
91
let walker = WalkDir::new(files.root_dir.as_path())
92
.min_depth(1)
93
.follow_links(false)
94
+ .sort_by(|a, b| a.file_name().cmp(b.file_name()))
95
.into_iter()
96
.filter_entry(move |e| files.includes_entry(e))
97
.filter_map(|e| e.ok())
0 commit comments