Skip to content

Commit

Permalink
fix: consistent file_id across installation paths (#6912)
Browse files Browse the repository at this point in the history
  • Loading branch information
guipublic authored Dec 23, 2024
1 parent a1f9c94 commit baca790
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit baca790

Please sign in to comment.