Fix fs.copy not working with empty dirs

This commit is contained in:
plainenglishh 2024-02-18 11:46:48 +00:00
parent 347da823b7
commit 87d52e4b11

View file

@ -150,6 +150,8 @@ pub async fn copy(
}
}
fs::create_dir_all(target).await?;
// FUTURE: Write dirs / files concurrently
// to potentially speed these operations up
for (_, dir) in &contents.dirs {