##// END OF EJS Templates
rhg: Sort config files when adding a directory...
Simon Sapin -
r47466:60fe9eba default
parent child Browse files
Show More
@@ -125,8 +125,13 b' impl Config {'
125 .when_reading_file(path)
125 .when_reading_file(path)
126 .io_not_found_as_none()?
126 .io_not_found_as_none()?
127 {
127 {
128 for entry in entries {
128 let mut file_paths = entries
129 let file_path = entry.when_reading_file(path)?.path();
129 .map(|result| {
130 result.when_reading_file(path).map(|entry| entry.path())
131 })
132 .collect::<Result<Vec<_>, _>>()?;
133 file_paths.sort();
134 for file_path in &file_paths {
130 if file_path.extension() == Some(std::ffi::OsStr::new("rc")) {
135 if file_path.extension() == Some(std::ffi::OsStr::new("rc")) {
131 self.add_trusted_file(&file_path)?
136 self.add_trusted_file(&file_path)?
132 }
137 }
General Comments 0
You need to be logged in to leave comments. Login now