Revert change to apply_patches to fix panic

This commit is contained in:
bjorn3 2024-09-22 19:02:30 +00:00
parent b40fe1ee28
commit 9456ff13c9
1 changed files with 6 additions and 1 deletions

View File

@ -203,7 +203,12 @@ pub(crate) fn apply_patches(dirs: &Dirs, crate_name: &str, source_dir: &Path, ta
eprintln!("[COPY] {crate_name} source");
ensure_empty_dir(target_dir);
copy_dir_recursively(source_dir, target_dir);
if crate_name == "stdlib" {
fs::create_dir(target_dir.join("library")).unwrap();
copy_dir_recursively(&source_dir.join("library"), &target_dir.join("library"));
} else {
copy_dir_recursively(source_dir, target_dir);
}
init_git_repo(target_dir);