mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Fix path comparison
This commit is contained in:
parent
b5e17c965d
commit
1e1f031713
@ -97,17 +97,13 @@ impl EmbeddedFiles {
|
||||
.exercises_dir
|
||||
.files
|
||||
.iter()
|
||||
.find(|file| file.path == path.as_os_str())
|
||||
.find(|file| Path::new(file.path) == path)
|
||||
{
|
||||
return file.write_to_disk(strategy);
|
||||
}
|
||||
|
||||
for dir in self.exercises_dir.dirs {
|
||||
if let Some(file) = dir
|
||||
.content
|
||||
.iter()
|
||||
.find(|file| file.path == path.as_os_str())
|
||||
{
|
||||
if let Some(file) = dir.content.iter().find(|file| Path::new(file.path) == path) {
|
||||
dir.init_on_disk()?;
|
||||
return file.write_to_disk(strategy);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user