Skip to content

Commit 6470537

Browse files
aaronsteersCopilot
andauthored
Update airbyte/_executors/docker.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 612d280 commit 6470537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte/_executors/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def map_cli_args(self, args: list[str]) -> list[str]:
8181
f"Found file input path `{arg}` "
8282
f"relative to container-mapped volume: {local_volume}"
8383
)
84-
mapped_path = container_path / Path(arg).relative_to(local_volume)
84+
mapped_path = Path(container_path) / Path(arg).relative_to(local_volume)
8585
logger.debug(f"Mapping `{arg}` -> `{mapped_path}`")
8686
new_args.append(str(mapped_path))
8787
break

0 commit comments

Comments
 (0)