Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gazelle/manifest/copy_to_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def copy_to_source(generated_relative_path: Path, target_relative_path: Path) ->
generated_absolute_path = Path.cwd() / generated_relative_path

# Similarly, the target is relative to the source directory.
target_absolute_path = os.getenv("BUILD_WORKSPACE_DIRECTORY") / target_relative_path
target_absolute_path = os.environ["BUILD_WORKSPACE_DIRECTORY"] / target_relative_path

print(f"Copying {generated_absolute_path} to {target_absolute_path}")
target_absolute_path.parent.mkdir(parents=True, exist_ok=True)
Expand Down