Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tooling/nargo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fn insert_all_files_for_package_into_file_manager(
.parent()
.unwrap_or_else(|| panic!("The entry path is expected to be a single file within a directory and so should have a parent {:?}", package.entry_path));

for entry in WalkDir::new(entry_path_parent) {
for entry in WalkDir::new(entry_path_parent).sort_by_file_name() {
let Ok(entry) = entry else {
continue;
};
Expand Down