Skip to content

Commit e8d8769

Browse files
authored
chore(librarian): update destination path for copying files (#14833)
This PR fixes the path where we want to copy the files.
1 parent cc923f1 commit e8d8769

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.generator/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,8 @@ def _copy_files_needed_for_post_processing(
372372
if Path(source_dir).exists():
373373
shutil.copytree(
374374
source_dir,
375-
output,
375+
f"{output}/{path_to_library}",
376376
dirs_exist_ok=True,
377-
ignore=shutil.ignore_patterns("client-post-processing"),
378377
)
379378

380379
# We need to create these directories so that we can copy files necessary for post-processing.

0 commit comments

Comments
 (0)